diff options
author | Friendika <info@friendika.com> | 2011-06-13 21:37:56 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-13 21:37:56 -0700 |
commit | dc10178b186f9f1693ebb59311dabfd7eab55b91 (patch) | |
tree | 8027dcfcb03c743686a0c44ba92acbcb7ccbbeac | |
parent | 05eb9ceaba9f87776b61a51a49a967cc578ef58a (diff) | |
download | volse-hubzilla-dc10178b186f9f1693ebb59311dabfd7eab55b91.tar.gz volse-hubzilla-dc10178b186f9f1693ebb59311dabfd7eab55b91.tar.bz2 volse-hubzilla-dc10178b186f9f1693ebb59311dabfd7eab55b91.zip |
apps is not an array...
-rw-r--r-- | include/nav.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/nav.php b/include/nav.php index 97cbe87cb..b37863aa1 100644 --- a/include/nav.php +++ b/include/nav.php @@ -64,7 +64,7 @@ function nav(&$a) { $nav['help'] = array($help_url, t('Help'), ""); - if(count($a->apps)) + if($a->apps) $nav['apps'] = array('apps', t('Apps'), ""); $nav['search'] = array('search', t('Search'), ""); |