diff options
author | Friendika <info@friendika.com> | 2011-06-13 20:32:30 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-13 20:32:30 -0700 |
commit | fb92dbf5d683c3d92a76216c09d23e338c7d3341 (patch) | |
tree | 9b405b273b1ec779074609ded358a8c0ecc20a10 /mod/profile.php | |
parent | d5fdd4287dec00adcb08e389385b1ecbc23cca6a (diff) | |
download | volse-hubzilla-fb92dbf5d683c3d92a76216c09d23e338c7d3341.tar.gz volse-hubzilla-fb92dbf5d683c3d92a76216c09d23e338c7d3341.tar.bz2 volse-hubzilla-fb92dbf5d683c3d92a76216c09d23e338c7d3341.zip |
link events + personal notes to profile tabs
Diffstat (limited to 'mod/profile.php')
-rw-r--r-- | mod/profile.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/profile.php b/mod/profile.php index 7dfdb49de..aeb21f077 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -115,7 +115,9 @@ function profile_content(&$a, $update = 0) { '$phototab' => $a->get_baseurl() . '/photos/' . $a->profile['nickname'], '$status' => t('Status'), '$profile' => t('Profile'), - '$photos' => t('Photos') + '$photos' => t('Photos'), + '$events' => (($is_owner) ? '<a href="events" id="profile-tab-events-link" class="profile-tabs" >' . t('Events') . '</a>' : ''), + '$notes' => (($is_owner) ? '<a href="notes" id="profile-tab-notes-link" class="profile-tabs" >' . t('Personal Notes') . '</a>' : '') )); |