diff options
author | friendica <info@friendica.com> | 2012-12-03 19:17:02 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-03 19:17:02 -0800 |
commit | c5cace552b55ff7f7fefca0b2bc1f49f80e65647 (patch) | |
tree | e2cf3ec6e3933d286abb41258cd4ca1b3be7d481 /include/nav.php | |
parent | a4bae6c29b616aac9ee8a4461688e30e0eac8e38 (diff) | |
download | volse-hubzilla-c5cace552b55ff7f7fefca0b2bc1f49f80e65647.tar.gz volse-hubzilla-c5cace552b55ff7f7fefca0b2bc1f49f80e65647.tar.bz2 volse-hubzilla-c5cace552b55ff7f7fefca0b2bc1f49f80e65647.zip |
most of the basic "make friends" stuff except for email notifications, drop community tab
Diffstat (limited to 'include/nav.php')
-rw-r--r-- | include/nav.php | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/include/nav.php b/include/nav.php index 5008b6269..24449409b 100644 --- a/include/nav.php +++ b/include/nav.php @@ -119,14 +119,6 @@ EOT; $gdirpath = 'directory'; - if(strlen(get_config('system','singleuser'))) { - $gdir = dirname(get_config('system','directory_submit_url')); - if(strlen($gdir)) - $gdirpath = $gdir; - } - elseif(! get_config('system','no_community_page')) - $nav['community'] = array('community', t('Community'), "", t('Conversations on this site')); - $nav['directory'] = array($gdirpath, t('Directory'), "", t('People directory')); /** @@ -141,9 +133,8 @@ EOT; $nav['home'] = array('channel/' . $channel['channel_address'], t('Home'), "", t('Your posts and conversations')); - if($channel['channel_pageflags'] == PAGE_NORMAL) { - $nav['introductions'] = array('notifications/intros', t('Introductions'), "", t('Connection Requests')); - } + $nav['intros'] = array('intro', t('Introductions'), "", t('New Connections')); + $nav['notifications'] = array('notifications', t('Notifications'), "", t('Notifications')); $nav['notifications']['all']=array('notifications/system', t('See all notifications'), "", ""); @@ -212,7 +203,7 @@ function nav_set_selected($item){ 'network' => null, 'home' => null, 'profiles' => null, - 'introductions' => null, + 'intros' => null, 'notifications' => null, 'messages' => null, 'directory' => null, |