summaryrefslogtreecommitdiffstats
path: root/custom
diff options
context:
space:
mode:
authornashe <contact@nashe.fr>2015-08-04 17:26:42 +0200
committernashe <contact@nashe.fr>2015-08-04 17:26:42 +0200
commit243ce3d9a243c54d1de3f23a8f7d5424c5aa3dc9 (patch)
tree9c897bd098563cd78da51e14febf6bc9f012a086 /custom
parent07aa4f5484dfefe4d9d5870b31d2e2269583fdd2 (diff)
downloadplanet-243ce3d9a243c54d1de3f23a8f7d5424c5aa3dc9.tar
planet-243ce3d9a243c54d1de3f23a8f7d5424c5aa3dc9.tar.gz
planet-243ce3d9a243c54d1de3f23a8f7d5424c5aa3dc9.tar.bz2
planet-243ce3d9a243c54d1de3f23a8f7d5424c5aa3dc9.tar.xz
planet-243ce3d9a243c54d1de3f23a8f7d5424c5aa3dc9.zip
Fix short echo open tags deprecation.
Short echo open tags are deprecated and disabled by default in php.ini since PHP 5.5.0. It does not broke anything for olders versions.
Diffstat (limited to 'custom')
-rwxr-xr-xcustom/views/archive/footer.tpl.php2
-rwxr-xr-xcustom/views/default/footer.tpl.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/custom/views/archive/footer.tpl.php b/custom/views/archive/footer.tpl.php
index bfc0210..c9c84b1 100755
--- a/custom/views/archive/footer.tpl.php
+++ b/custom/views/archive/footer.tpl.php
@@ -1,3 +1,3 @@
<div id="footer">
- <p><? echo str_replace('%s', 'href="http://moonmoon.org"', _g('Powered by <a %s>moonmoon</a>'))?> | <a href="./admin/"><?=_g('Administration')?></a></p>
+ <p><?php echo str_replace('%s', 'href="http://moonmoon.org"', _g('Powered by <a %s>moonmoon</a>'))?> | <a href="./admin/"><?=_g('Administration')?></a></p>
</div>
diff --git a/custom/views/default/footer.tpl.php b/custom/views/default/footer.tpl.php
index bfc0210..c9c84b1 100755
--- a/custom/views/default/footer.tpl.php
+++ b/custom/views/default/footer.tpl.php
@@ -1,3 +1,3 @@
<div id="footer">
- <p><? echo str_replace('%s', 'href="http://moonmoon.org"', _g('Powered by <a %s>moonmoon</a>'))?> | <a href="./admin/"><?=_g('Administration')?></a></p>
+ <p><?php echo str_replace('%s', 'href="http://moonmoon.org"', _g('Powered by <a %s>moonmoon</a>'))?> | <a href="./admin/"><?=_g('Administration')?></a></p>
</div>