diff options
author | friendica <info@friendica.com> | 2014-05-21 17:23:34 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-05-21 17:23:34 -0700 |
commit | d17768d4e7b7f07dfd2f4326f79fa8b1f9a74582 (patch) | |
tree | 1cb7bf698e713a4a784a579c4dd6db9d7b00167c /include/nav.php | |
parent | a6602a9871a918702a5ccbcae121920cf959129c (diff) | |
download | volse-hubzilla-d17768d4e7b7f07dfd2f4326f79fa8b1f9a74582.tar.gz volse-hubzilla-d17768d4e7b7f07dfd2f4326f79fa8b1f9a74582.tar.bz2 volse-hubzilla-d17768d4e7b7f07dfd2f4326f79fa8b1f9a74582.zip |
change app dropdown to point to apps module (changes nav template). Important: Plugins using the app-menu hook will no longer be accessible from there and may require re-writing to plug into the system apps page. Also filter apps in items from the language detector to avoid false triggers from the base64 content.
Diffstat (limited to 'include/nav.php')
-rw-r--r-- | include/nav.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/nav.php b/include/nav.php index a97b434bc..2d0d43d5a 100644 --- a/include/nav.php +++ b/include/nav.php @@ -138,8 +138,8 @@ EOT; if(! get_config('system','hide_help')) $nav['help'] = array($help_url, t('Help'), "", t('Help and documentation')); - if(count($a->get_apps()) > 0) - $nav['apps'] = array('apps', t('Apps'), "", t('Addon applications, utilities, games')); + + $nav['apps'] = array('apps', t('Apps'), "", t('Applications, utilities, links, games')); $nav['search'] = array('search', t('Search'), "", t('Search site content')); @@ -221,7 +221,6 @@ EOT; '$userinfo' => $x['usermenu'], '$localuser' => local_user(), '$sel' => $a->nav_sel, - '$apps' => $a->get_apps(), '$pleasewait' => t('Please wait...') )); |