diff options
author | nashe <contact@nashe.fr> | 2015-08-04 17:26:42 +0200 |
---|---|---|
committer | nashe <contact@nashe.fr> | 2015-08-04 17:26:42 +0200 |
commit | 243ce3d9a243c54d1de3f23a8f7d5424c5aa3dc9 (patch) | |
tree | 9c897bd098563cd78da51e14febf6bc9f012a086 /custom | |
parent | 07aa4f5484dfefe4d9d5870b31d2e2269583fdd2 (diff) | |
download | planet-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-x | custom/views/archive/footer.tpl.php | 2 | ||||
-rwxr-xr-x | custom/views/default/footer.tpl.php | 2 |
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> |