aboutsummaryrefslogtreecommitdiffstats
path: root/include/nav.php
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-08-31 16:18:03 +0200
committerFabio Comuni <fabrix.xm@gmail.com>2011-08-31 16:18:03 +0200
commit5ce6f893a64984eae9685db305b8d29ae3ced509 (patch)
tree6de789793cba03e7241caf164e8ad80c785a85b0 /include/nav.php
parent71d44d78ec5b16a53b82f4e631b86cd8247a9b0f (diff)
downloadvolse-hubzilla-5ce6f893a64984eae9685db305b8d29ae3ced509.tar.gz
volse-hubzilla-5ce6f893a64984eae9685db305b8d29ae3ced509.tar.bz2
volse-hubzilla-5ce6f893a64984eae9685db305b8d29ae3ced509.zip
Apps popup menu in navbar
Diffstat (limited to 'include/nav.php')
-rw-r--r--include/nav.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/nav.php b/include/nav.php
index f9e72bda7..b290a8da2 100644
--- a/include/nav.php
+++ b/include/nav.php
@@ -81,7 +81,7 @@ function nav(&$a) {
if(! get_config('system','hide_help'))
$nav['help'] = array($help_url, t('Help'), "", t('Help and documentation'));
- if($a->apps)
+ if(count($a->apps)>0)
$nav['apps'] = array('apps', t('Apps'), "", t('Addon applications, utilities, games'));
$nav['search'] = array('search', t('Search'), "", t('Search site content'));
@@ -158,6 +158,7 @@ function nav(&$a) {
'$emptynotifications' => t('Nothing new here'),
'$userinfo' => $userinfo,
'$sel' => $a->nav_sel,
+ '$apps' => $a->apps,
));
call_hooks('page_header', $a->page['nav']);