diff options
author | Friendika <info@friendika.com> | 2010-12-30 14:36:35 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-30 14:36:35 -0800 |
commit | 98dcc195117bab35363c75e14af08858b6dbba3d (patch) | |
tree | 027cd8e990cc5bc9929177c5bd5e45cc8153d9c5 /include/nav.php | |
parent | 279469ab35596097e7942e7c2377bc50967ee953 (diff) | |
download | volse-hubzilla-98dcc195117bab35363c75e14af08858b6dbba3d.tar.gz volse-hubzilla-98dcc195117bab35363c75e14af08858b6dbba3d.tar.bz2 volse-hubzilla-98dcc195117bab35363c75e14af08858b6dbba3d.zip |
page_header hook
Diffstat (limited to 'include/nav.php')
-rw-r--r-- | include/nav.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/nav.php b/include/nav.php index af0c58710..74b4defc3 100644 --- a/include/nav.php +++ b/include/nav.php @@ -49,7 +49,6 @@ $a->page['nav'] .= '<a id="nav-contacts-link" class="nav-link" href="contacts">' . t('Contacts') . "</a>\r\n"; - } @@ -57,9 +56,10 @@ $banner = get_config('system','banner'); - if($banner === false) $banner .= '<a href="http://friendika.com"><img id="logo-img" src="images/ff-32.jpg" alt="logo" /></a><span id="logo-text"><a href="http://friendika.com">Friendika</a></span>'; $a->page['nav'] .= '<span id="banner">' . $banner . '</span>'; + + call_hooks('page_header', $a->page['nav']); |