aboutsummaryrefslogtreecommitdiffstats
path: root/mod/profile.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-23 04:10:12 -0700
committerFriendika <info@friendika.com>2011-06-23 04:10:12 -0700
commitfa778e0040df784c9eec5392731473e58fbfa0be (patch)
tree485529ec20593a502012b3f948c0d79c86a50333 /mod/profile.php
parent96857389ac6a9ab11f0543da5b0af3895dfccfaf (diff)
parente7737d2ea46d18f6098885b9a5aa0fc9eef34d90 (diff)
downloadvolse-hubzilla-fa778e0040df784c9eec5392731473e58fbfa0be.tar.gz
volse-hubzilla-fa778e0040df784c9eec5392731473e58fbfa0be.tar.bz2
volse-hubzilla-fa778e0040df784c9eec5392731473e58fbfa0be.zip
Merge pull request #126 from fabrixxm/dispy
Dispy
Diffstat (limited to 'mod/profile.php')
-rw-r--r--mod/profile.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/profile.php b/mod/profile.php
index 587ac6288..f2dd7f4df 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -116,8 +116,9 @@ function profile_content(&$a, $update = 0) {
'$status' => t('Status'),
'$profile' => t('Profile'),
'$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>' : '')
+ '$events' => (($is_owner) ? t('Events') : ''),
+ '$notes' => (($is_owner) ? t('Personal Notes') : ''),
+ '$activetab' => $tab,
));