From 715629405563b28d56a187e2fbb8616f9fa02f7a Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 2 Jan 2015 12:45:09 +0100 Subject: [PATCH] Items that were stored via "remote-self" hadn't contained a valid avatar picture. --- include/items.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/items.php b/include/items.php index ed91fc7e4..d6da0ed5a 100644 --- a/include/items.php +++ b/include/items.php @@ -2668,14 +2668,14 @@ function item_is_remote_self($contact, &$datarray) { $datarray2 = $datarray; logger('remote-self start - Contact '.$contact['url'].' - '.$contact['remote_self'].' Item '.print_r($datarray, true), LOGGER_DEBUG); if ($contact['remote_self'] == 2) { - $r = q("SELECT `id`,`url`,`name`,`photo`,`network` FROM `contact` WHERE `uid` = %d AND `self`", + $r = q("SELECT `id`,`url`,`name`,`thumb` FROM `contact` WHERE `uid` = %d AND `self`", intval($contact['uid'])); if (count($r)) { $datarray['contact-id'] = $r[0]["id"]; $datarray['owner-name'] = $r[0]["name"]; $datarray['owner-link'] = $r[0]["url"]; - $datarray['owner-avatar'] = $r[0]["avatar"]; + $datarray['owner-avatar'] = $r[0]["thumb"]; $datarray['author-name'] = $datarray['owner-name']; $datarray['author-link'] = $datarray['owner-link'];