diff options
Diffstat (limited to 'include/nav.php')
-rw-r--r-- | include/nav.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/nav.php b/include/nav.php index 5b86a0691..c714502a1 100644 --- a/include/nav.php +++ b/include/nav.php @@ -152,7 +152,9 @@ EOT; $nav['manage'] = array('manage', t('Channel Select'), "", t('Manage Your Channels')); $nav['settings'] = array('settings', t('Settings'),"", t('Account/Channel Settings')); - $nav['profiles'] = array('profiles', t('Profiles'),"", t('Manage/Edit Profiles')); + 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')); } |