diff options
author | friendica <info@friendica.com> | 2013-01-03 17:36:03 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-03 17:36:03 -0800 |
commit | b00132339018efe95902900cbe0dabe5e2bbad0e (patch) | |
tree | cd29918ea0211b499dee43c12d2126a3a03dcc7b /include/nav.php | |
parent | 9a8dec548010c0d1b5b18112dc7bbba79a247852 (diff) | |
download | volse-hubzilla-b00132339018efe95902900cbe0dabe5e2bbad0e.tar.gz volse-hubzilla-b00132339018efe95902900cbe0dabe5e2bbad0e.tar.bz2 volse-hubzilla-b00132339018efe95902900cbe0dabe5e2bbad0e.zip |
make the menu consistent and eliminate redundancy - though we need icons for mail and events (sorry Thomas if this breaks your themes in a bad way, but at least the menus make sense now).
Diffstat (limited to 'include/nav.php')
-rw-r--r-- | include/nav.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/nav.php b/include/nav.php index da42dee95..5b5d80b17 100644 --- a/include/nav.php +++ b/include/nav.php @@ -72,8 +72,9 @@ EOT; // user menu $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('profile/' . $channel['channel_address'], t('View Profile'), "", t('Your profile page')); + if(feature_enabled(local_user(),'multi_profiles')) + $nav['usermenu'] = Array('profiles', t('Edit Profiles'),"", t('Manage/Edit Profiles')); $nav['usermenu'][] = Array('photos/' . $channel['channel_address'], t('Photos'), "", t('Your photos')); // $nav['usermenu'][] = Array('events/', t('Events'), "", t('Your events')); @@ -151,8 +152,6 @@ EOT; $nav['manage'] = array('manage', t('Channel Select'), "", t('Manage Your Channels')); $nav['settings'] = array('settings', t('Settings'),"", t('Account/Channel Settings')); - if(feature_enabled(local_user(),'multi_profiles')) - $nav['profiles'] = array('profiles', t('Profiles'),"", t('Manage/Edit Profiles')); $nav['contacts'] = array('connections', t('Connections'),"", t('Manage/Edit Friends and Connections')); } |