diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-07 22:44:22 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-07 22:44:22 -0700 |
commit | 4b4d680dc4e40384e9cc71591609a1f788f31c66 (patch) | |
tree | 97a46c9aba93073f8dd734a436c4a0271d1d62b2 /mod/profile.php | |
parent | ac4800918012282d2e8daa40b3486a661ce5f279 (diff) | |
download | volse-hubzilla-4b4d680dc4e40384e9cc71591609a1f788f31c66.tar.gz volse-hubzilla-4b4d680dc4e40384e9cc71591609a1f788f31c66.tar.bz2 volse-hubzilla-4b4d680dc4e40384e9cc71591609a1f788f31c66.zip |
sort out anon profile display and write permissions
Diffstat (limited to 'mod/profile.php')
-rw-r--r-- | mod/profile.php | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/mod/profile.php b/mod/profile.php index 957d67be3..1caa3478f 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -149,12 +149,15 @@ function profile_content(&$a) { if(count($r)) { foreach($r as $rr) { - $comment = replace_macros($template,array( - '$id' => $rr['item_id'], - '$profile_uid' => $a->profile['profile_uid'] - )); - - + if(can_write_wall($a,$a->profile['profile_uid'])) { + $comment = replace_macros($template,array( + '$id' => $rr['item_id'], + '$profile_uid' => $a->profile['profile_uid'] + )); + } + else { + $comment = ''; + } $o .= item_display($a,$rr,$tpl,$comment); } |