X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fnav.php;h=f838830a8873b109537acec32edc15de36907c96;hb=07bc8ca166d8ef0618c353d110e0c15916f268d7;hp=fd92b66d154e44fb302c3c61b685e51f908995da;hpb=829a92a10e219e1e3d8638945e5cf48af62f4483;p=friendica.git diff --git a/include/nav.php b/include/nav.php index fd92b66d15..f838830a88 100644 --- a/include/nav.php +++ b/include/nav.php @@ -148,7 +148,7 @@ function nav_info(&$a) { /* only show friend requests for normal pages. Other page types have automatic friendship. */ - if($_SESSION['page_flags'] == PAGE_NORMAL || $_SESSION['page_flags'] == PAGE_PRVGROUP) { + if($_SESSION['page_flags'] == PAGE_NORMAL || $_SESSION['page_flags'] == PAGE_SOAPBOX || $_SESSION['page_flags'] == PAGE_PRVGROUP) { $nav['introductions'] = array('notifications/intros', t('Introductions'), "", t('Friend Requests')); $nav['notifications'] = array('notifications', t('Notifications'), "", t('Notifications')); $nav['notifications']['all']=array('notifications/system', t('See all notifications'), "", ""); @@ -166,12 +166,12 @@ function nav_info(&$a) { } $nav['delegations'] = Array('delegate', t('Delegations'), "", t('Delegate Page Management')); - + $nav['settings'] = array('settings', t('Settings'),"", t('Account settings')); - + if(feature_enabled(local_user(),'multi_profiles')) $nav['profiles'] = array('profiles', t('Profiles'),"", t('Manage/Edit Profiles')); - + $nav['contacts'] = array('contacts', t('Contacts'),"", t('Manage/edit friends and contacts')); }