Skip to content

Commit

Permalink
LUGG-941 Added current year token to suitcase_interim block template (#…
Browse files Browse the repository at this point in the history
…84)

* LUGG-941 Added current year token to suitcase_interim block template

* LUGG-941 Added logic to check whether token_filter was enabled
  • Loading branch information
angelamnr authored and njbooher committed Mar 8, 2017
1 parent a2a29ea commit 494bff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/default_region_content_blocks/footer_third.tpl.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<p>Copyright &copy; <?php print date('Y'); ?>, Iowa State University of Science and Technology. All rights reserved.</p>
<p>Copyright &copy; <?php (module_exists('token_filter')) ? print('[current-date:custom:Y]') : print date('Y'); ?>, Iowa State University of Science and Technology. All rights reserved.</p>
<ul class="menu">
<li class="first leaf">
<a href="http://www.policy.iastate.edu/policy/discrimination">Non-discrimination Policy</a>
Expand All @@ -9,4 +9,4 @@
<li class="last leaf">
<a href="http://digitalaccess.iastate.edu">Digital Access &amp; Accessibility</a>
</li>
</ul>
</ul>

0 comments on commit 494bff4

Please sign in to comment.