diff options
author | Thomas Willingham <founder@kakste.com> | 2013-02-02 16:28:10 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-02-02 16:28:10 +0000 |
commit | c4ca0f796ad84cbca037ca3cfe52f7dcb0aa413f (patch) | |
tree | 81e221bb5a2bcc2fd01739a50ee04a41400d471a /include | |
parent | 70dc7993be7a89c7809c74dc8606d071abf962d1 (diff) | |
download | volse-hubzilla-c4ca0f796ad84cbca037ca3cfe52f7dcb0aa413f.tar.gz volse-hubzilla-c4ca0f796ad84cbca037ca3cfe52f7dcb0aa413f.tar.bz2 volse-hubzilla-c4ca0f796ad84cbca037ca3cfe52f7dcb0aa413f.zip |
Fix broken menu for multiple profiles.
Diffstat (limited to 'include')
-rw-r--r-- | include/nav.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/nav.php b/include/nav.php index bbf803390..5490d6cd4 100644 --- a/include/nav.php +++ b/include/nav.php @@ -74,7 +74,7 @@ EOT; $nav['usermenu'][] = Array('channel/' . $channel['channel_address'], t('Status'), "", t('Your posts and conversations')); $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('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')); |