diff options
author | zottel <github@zottel.net> | 2012-04-04 08:56:35 +0200 |
---|---|---|
committer | zottel <github@zottel.net> | 2012-04-04 08:56:35 +0200 |
commit | 64a1367525ac920721943a08adec1124657df70d (patch) | |
tree | bf23c495a023915b0d4063adfb6fc04e046a28d8 /mod/profile.php | |
parent | e5cd5aab5cf5fd5019ec3178f09f5515c390c9d9 (diff) | |
parent | 5c6c9d756fbb816c1473ccb7b6ec72662c749f4f (diff) | |
download | volse-hubzilla-64a1367525ac920721943a08adec1124657df70d.tar.gz volse-hubzilla-64a1367525ac920721943a08adec1124657df70d.tar.bz2 volse-hubzilla-64a1367525ac920721943a08adec1124657df70d.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'mod/profile.php')
-rwxr-xr-x | mod/profile.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/profile.php b/mod/profile.php index 26b33d5f1..68d73fba3 100755 --- a/mod/profile.php +++ b/mod/profile.php @@ -124,9 +124,9 @@ function profile_content(&$a, $update = 0) { return; } - $a->page['aside'] .= categories_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],(x($category) ? xmlify($category) : '')); - if(! $update) { + + if(x($_GET,'tab')) $tab = notags(trim($_GET['tab'])); @@ -148,6 +148,7 @@ function profile_content(&$a, $update = 0) { $celeb = ((($a->profile['page-flags'] == PAGE_SOAPBOX) || ($a->profile['page-flags'] == PAGE_COMMUNITY)) ? true : false); + $a->page['aside'] .= categories_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],(x($category) ? xmlify($category) : '')); if(can_write_wall($a,$a->profile['profile_uid'])) { |