diff options
author | friendica <info@friendica.com> | 2012-10-24 19:13:29 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-24 19:13:29 -0700 |
commit | ceeb4db6e304c26ebe56311743eb9baca69f7066 (patch) | |
tree | f0707fdd2e1ed786a39f2e0491f275fd2e3982a3 /index.php | |
parent | 2b95ce9f07bcf2d85eeb410f6d9bc4b3f2b54b86 (diff) | |
download | volse-hubzilla-ceeb4db6e304c26ebe56311743eb9baca69f7066.tar.gz volse-hubzilla-ceeb4db6e304c26ebe56311743eb9baca69f7066.tar.bz2 volse-hubzilla-ceeb4db6e304c26ebe56311743eb9baca69f7066.zip |
Give the UI a little love after all the backend mods
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -384,12 +384,14 @@ if($a->is_mobile || $a->is_tablet) { else { $link = $a->get_baseurl() . '/toggle_mobile?off=1&address=' . curPageURL(); } - $a->page['footer'] = replace_macros(get_markup_template("toggle_mobile_footer.tpl"), array( + $a->page['footer'] .= replace_macros(get_markup_template("toggle_mobile_footer.tpl"), array( '$toggle_link' => $link, '$toggle_text' => t('toggle mobile') )); } +$a->page['footer'] .= '<div id="powered-by">' . t("Friendica Red") . '</div>'; + $page = $a->page; $profile = $a->profile; |