diff options
author | Zvi ben Yaakov (a.k.a rdc) <coderzvi@infosoc.net> | 2012-06-19 21:40:14 +0300 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-19 16:05:39 -0700 |
commit | ff2f7dfeef4a6c0f13f7ed0eb346a8ed04e60655 (patch) | |
tree | d828fe2ff1fb4e2b7ba821f4a59737d81857bb25 | |
parent | a801888b15319759b3335bd754a9c7f97b7d93dc (diff) | |
download | volse-hubzilla-ff2f7dfeef4a6c0f13f7ed0eb346a8ed04e60655.tar.gz volse-hubzilla-ff2f7dfeef4a6c0f13f7ed0eb346a8ed04e60655.tar.bz2 volse-hubzilla-ff2f7dfeef4a6c0f13f7ed0eb346a8ed04e60655.zip |
Added App::get_cached_avatar_image usage on conversation wall of Normal View
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index ee012232e..2244e8df7 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -657,7 +657,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { if(($normalised != 'mailbox') && (x($a->contacts,$normalised))) $profile_avatar = $a->contacts[$normalised]['thumb']; else - $profile_avatar = (((strlen($item['author-avatar'])) && $diff_author) ? $item['author-avatar'] : $thumb); + $profile_avatar = (((strlen($item['author-avatar'])) && $diff_author) ? $item['author-avatar'] : $a->get_cached_avatar_image($thumb)); $like = ((x($alike,$item['id'])) ? format_like($alike[$item['id']],$alike[$item['id'] . '-l'],'like',$item['id']) : ''); $dislike = ((x($dlike,$item['id'])) ? format_like($dlike[$item['id']],$dlike[$item['id'] . '-l'],'dislike',$item['id']) : ''); |