X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fnav.php;h=511ca07fc0079ef41736260f964bd3883adbcee6;hb=aa92901b11a70c495904d902bfdb4f4e21af8b47;hp=b290a8da23ddeb0e7b24f58fccdc68a0b1003ae4;hpb=d284f8017cefb79571fe51c4ae3f85b9b4e517c9;p=friendica.git diff --git a/include/nav.php b/include/nav.php old mode 100644 new mode 100755 index b290a8da23..511ca07fc0 --- a/include/nav.php +++ b/include/nav.php @@ -114,7 +114,11 @@ 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['notifications']['all']=array('notifications/system', t('See all notifications'), "", ""); + $nav['notifications']['mark'] = array('', t('Mark all system notifications seen'), '',''); + } $nav['messages'] = array('message', t('Messages'), "", t('Private mail')); @@ -145,7 +149,7 @@ function nav(&$a) { $banner = get_config('system','banner'); if($banner === false) - $banner .= 'logoFriendika'; + $banner .= 'logoFriendica'; $tpl = get_markup_template('nav.tpl'); @@ -175,11 +179,14 @@ function nav_set_selected($item){ 'network' => null, 'home' => null, 'profiles' => null, + 'introductions' => null, 'notifications' => null, 'messages' => null, - 'directyory' => null, + 'directory' => null, 'settings' => null, 'contacts' => null, + 'manage' => null, + 'register' => null, ); $a->nav_sel[$item] = 'selected'; }