Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix version number & date in footer #402

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion application/views/templates/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
case 'fr' : echo '<a class="anchor" href="https://fr.jorani.org/" target="_blank">Jorani</a>'; break;
default : echo '<a class="anchor" href="https://jorani.org/" target="_blank">Jorani</a>'; break;
} ?>
&nbsp;v<?php echo $GLOBALS['versionOfJorani'];?>&nbsp;&copy;2014-2019 Benjamin BALET
&nbsp;v<?php echo $GLOBALS['versionOfJorani'];?>&nbsp;&copy;2014-2023 Benjamin BALET
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
&nbsp;v<?php echo $GLOBALS['versionOfJorani'];?>&nbsp;&copy;2014-2023 Benjamin BALET
&nbsp;v<?php echo $GLOBALS['versionOfJorani'];?>&nbsp;&copy;2014-<?php echo date('Y');?> Benjamin BALET

</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@
* And away we go...
*/

$GLOBALS['versionOfJorani'] = '1.0.0';
$GLOBALS['versionOfJorani'] = '1.0.3';

require_once FCPATH . 'vendor/autoload.php';
require_once BASEPATH.'core/CodeIgniter.php';