aboutsummaryrefslogtreecommitdiffstats
path: root/include/nav.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-07-24 21:29:07 -0700
committerfriendica <info@friendica.com>2014-07-24 21:29:07 -0700
commit5dcd0654d44b21503663801b8b5fb5d76ae4f015 (patch)
treecfe143f4d70e8be387e3afc430d19a7f4554f8e5 /include/nav.php
parent1a6973a670b7137353708e838d9076be3e9b93bf (diff)
downloadvolse-hubzilla-5dcd0654d44b21503663801b8b5fb5d76ae4f015.tar.gz
volse-hubzilla-5dcd0654d44b21503663801b8b5fb5d76ae4f015.tar.bz2
volse-hubzilla-5dcd0654d44b21503663801b8b5fb5d76ae4f015.zip
always provide a profile edit entry in the nav usermenu
Diffstat (limited to 'include/nav.php')
-rw-r--r--include/nav.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/nav.php b/include/nav.php
index 80e4955e5..8133ecf67 100644
--- a/include/nav.php
+++ b/include/nav.php
@@ -34,6 +34,10 @@ EOT;
if(local_user()) {
$channel = $a->get_channel();
$observer = $a->get_observer();
+ $prof = q("select id from profile where uid = %d and is_default = 1",
+ intval($channel['channel_id'])
+ );
+
}
elseif(remote_user())
$observer = $a->get_observer();
@@ -81,6 +85,9 @@ EOT;
$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'));
+ else
+ $nav['usermenu'][] = Array('profiles/' . $prof[0]['id'], t('Edit Profile'),"", t('Edit your profile'));
+
$nav['usermenu'][] = Array('photos/' . $channel['channel_address'], t('Photos'), "", t('Your photos'));
$nav['usermenu'][] = Array('cloud/' . $channel['channel_address'],t('Files'),"",t('Your files'));