diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-09 01:12:53 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-09 01:12:53 -0700 |
commit | deaff556ff03d9f54d8834909a949bbab6d547ce (patch) | |
tree | 2e53ea936af4fed81f28636c6dc9da858bed0314 /mod | |
parent | 1eb68ca6f982be117f9998930f67eacc20785596 (diff) | |
download | volse-hubzilla-deaff556ff03d9f54d8834909a949bbab6d547ce.tar.gz volse-hubzilla-deaff556ff03d9f54d8834909a949bbab6d547ce.tar.bz2 volse-hubzilla-deaff556ff03d9f54d8834909a949bbab6d547ce.zip |
more to resolve photo inconsitency
Diffstat (limited to 'mod')
-rw-r--r-- | mod/profile.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/profile.php b/mod/profile.php index e5bc92f5b..94e86e151 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -74,11 +74,14 @@ function item_display(&$a, $item,$template,$comment) { if(local_user() && ($item['contact-uid'] == $_SESSION['uid']) && (strlen($item['dfrn-id'])) && (! $item['self'] )) $profile_url = $a->get_baseurl() . '/redir/' . $item['cid'] ; + $photo = (($item['self']) ? $a->profile['photo'] : $item['photo']); + $thumb = (($item['self']) ? $a->profile['thumb'] : $item['thumb']); + $o .= replace_macros($template,array( '$id' => $item['item_id'], '$profile_url' => $profile_url, '$name' => $item['name'], - '$thumb' => $item['thumb'], + '$thumb' => $thumb, '$body' => bbcode($item['body']), '$ago' => relative_date($item['created']), '$comment' => $comment |