diff options
author | friendica <info@friendica.com> | 2014-09-29 21:58:35 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-29 21:58:35 -0700 |
commit | 5292e3a100dd8da20865167e59f859a528676df7 (patch) | |
tree | ac5312f1c12f7cfeb0cab14d3dfda85c1f8965f5 /include/nav.php | |
parent | 7c3b428e670ec3508f821a95568ba1248ce33616 (diff) | |
download | volse-hubzilla-5292e3a100dd8da20865167e59f859a528676df7.tar.gz volse-hubzilla-5292e3a100dd8da20865167e59f859a528676df7.tar.bz2 volse-hubzilla-5292e3a100dd8da20865167e59f859a528676df7.zip |
implement a "powered-by" but leave it turned off until somebody with a good eye for layout can figure out where best to put it.
Diffstat (limited to 'include/nav.php')
-rw-r--r-- | include/nav.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/nav.php b/include/nav.php index 98d1b644e..c35466412 100644 --- a/include/nav.php +++ b/include/nav.php @@ -239,6 +239,12 @@ EOT; $x = array('nav' => $nav, 'usermenu' => $userinfo ); call_hooks('nav', $x); +// Not sure the best place to put this on the page. So I'm implementing it but leaving it +// turned off until somebody discovers this and figures out a good location for it. +$powered_by = ''; + +// $powered_by = '<strong>red<img class="smiley" src="' . $a->get_baseurl() . '/images/rm-16.png" alt="r#" />matrix</strong>'; + $tpl = get_markup_template('nav.tpl'); $a->page['nav'] .= replace_macros($tpl, array( @@ -250,6 +256,7 @@ EOT; '$userinfo' => $x['usermenu'], '$localuser' => local_user(), '$sel' => $a->nav_sel, + '$powered_by' => $powered_by, '$pleasewait' => t('Please wait...') )); |