Skip to content

Commit

Permalink
Allowing translation of copyrights in footers
Browse files Browse the repository at this point in the history
  • Loading branch information
rbukovansky committed Apr 18, 2017
1 parent 4cc6a35 commit 58ce052
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/client/footer.inc.php
@@ -1,7 +1,7 @@
</div>
</div>
<div id="footer">
<p>Copyright &copy; <?php echo date('Y'); ?> <?php echo (string) $ost->company ?: 'osTicket.com'; ?> - All rights reserved.</p>
<p><?php echo __('Copyright &copy;'); ?> <?php echo date('Y'); ?> <?php echo (string) $ost->company ?: 'osTicket.com'; ?> - <?php echo __('All rights reserved.'); ?></p>
<a id="poweredBy" href="http://osticket.com" target="_blank"><?php echo __('Helpdesk software - powered by osTicket'); ?></a>
</div>
<div id="overlay"></div>
Expand Down
2 changes: 1 addition & 1 deletion include/staff/footer.inc.php
Expand Up @@ -2,7 +2,7 @@
</div>
<?php if (!isset($_SERVER['HTTP_X_PJAX'])) { ?>
<div id="footer">
Copyright &copy; 2006-<?php echo date('Y'); ?>&nbsp;<?php echo (string) $ost->company ?: 'osTicket.com'; ?>&nbsp;All Rights Reserved.
<?php echo __('Copyright &copy;') ?> 2006-<?php echo date('Y'); ?>&nbsp;<?php echo (string) $ost->company ?: 'osTicket.com'; ?>&nbsp;<?php echo __('All Rights Reserved.'); ?>
</div>
<?php
if(is_object($thisstaff) && $thisstaff->isStaff()) { ?>
Expand Down

0 comments on commit 58ce052

Please sign in to comment.