X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Fnav.php;h=4c75a495b3925d1ee0fe0153e5e983535d93a675;hb=c568493f572bdc88cae288d5c43e9fb55361ce07;hp=16ec941aa8b9d007c6fa133950e8d9c0e70fbe2c;hpb=ffa3b67365741d77b9a21b8505e4661668e6b561;p=friendica.git diff --git a/include/nav.php b/include/nav.php index 16ec941aa8..4c75a495b3 100644 --- a/include/nav.php +++ b/include/nav.php @@ -114,7 +114,9 @@ function nav(&$a) { /* only show friend requests for normal pages. Other page types have automatic friendship. */ if($_SESSION['page_flags'] == PAGE_NORMAL) { - $nav['notifications'] = array('notifications', t('Notifications'), "", t('Friend requests')); + $nav['introductions'] = array('notifications/intros', t('Introductions'), "", t('Friend Requests')); + $nav['notifications'] = array('notifications', t('Notifications'), "", t('Notifications')); + } $nav['messages'] = array('message', t('Messages'), "", t('Private mail')); @@ -145,7 +147,7 @@ function nav(&$a) { $banner = get_config('system','banner'); if($banner === false) - $banner .= 'logoFriendika'; + $banner .= 'logoFriendica'; $tpl = get_markup_template('nav.tpl'); @@ -175,11 +177,14 @@ function nav_set_selected($item){ 'network' => null, 'home' => null, 'profiles' => null, + 'introductions' => null, 'notifications' => null, 'messages' => null, - 'directory' => null, + 'directory' => null, 'settings' => null, 'contacts' => null, + 'manage' => null, + 'register' => null, ); $a->nav_sel[$item] = 'selected'; }