diff options
author | friendica <info@friendica.com> | 2012-10-29 17:14:02 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-29 17:14:02 -0700 |
commit | e3c2e589794b13e23c1184deeba37e41dbc0144b (patch) | |
tree | c7f36aa88f89ffd7afbc97183d0cf3c20c637da8 /include/nav.php | |
parent | a217c8de98329e97c3706ad4351deecd1c31fbc2 (diff) | |
download | volse-hubzilla-e3c2e589794b13e23c1184deeba37e41dbc0144b.tar.gz volse-hubzilla-e3c2e589794b13e23c1184deeba37e41dbc0144b.tar.bz2 volse-hubzilla-e3c2e589794b13e23c1184deeba37e41dbc0144b.zip |
"profile url" e.g. the wall/stream is now "channel url". "Profile URL" goes to the profile details.
Diffstat (limited to 'include/nav.php')
-rw-r--r-- | include/nav.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/nav.php b/include/nav.php index a71f97457..02a76b6b4 100644 --- a/include/nav.php +++ b/include/nav.php @@ -70,8 +70,8 @@ EOT; $nav['logout'] = Array('logout',t('Logout'), "", t('End this session')); // user menu - $nav['usermenu'][] = Array('profile/' . $channel['channel_address'], t('Status'), "", t('Your posts and conversations')); - $nav['usermenu'][] = Array('profile/' . $channel['channel_address']. '?tab=profile', t('Profile'), "", t('Your profile page')); + $nav['usermenu'][] = Array('channel/' . $channel['channel_address'], t('Status'), "", t('Your posts and conversations')); + $nav['usermenu'][] = Array('profile/' . $channel['channel_address'], t('Profile'), "", t('Your profile page')); $nav['usermenu'][] = Array('photos/' . $channel['channel_address'], t('Photos'), "", t('Your photos')); $nav['usermenu'][] = Array('events/', t('Events'), "", t('Your events')); @@ -134,7 +134,7 @@ EOT; $nav['network'] = array('network', t('Network'), "", t('Conversations from your friends')); - $nav['home'] = array('profile/' . $channel['channel_address'], t('Home'), "", t('Your posts and conversations')); + $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('Friend Requests')); |