From: Zvi ben Yaakov (a.k.a rdc) Date: Mon, 18 Jun 2012 19:18:43 +0000 (+0300) Subject: Now using App::get_cached_avatar_image for /profile/{nickname} page X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d4f4ed730c247f9339e71af40b8dbefff2565c48;p=friendica.git Now using App::get_cached_avatar_image for /profile/{nickname} page --- diff --git a/mod/profiles.php b/mod/profiles.php index 7b6e61ad6a..a9da5454cf 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -635,7 +635,7 @@ function profiles_content(&$a) { } else { - $r = q("SELECT `profile`.*, `contact`.`avatar-date` AS picdate FROM `profile` LEFT JOIN `contact` on `contact`.`uid` = `profile`.`uid` WHERE `profile`.`uid` = %d and contact.self = 1", + $r = q("SELECT * FROM `profile` WHERE `uid` = %d", local_user()); if(count($r)) { @@ -652,7 +652,7 @@ function profiles_content(&$a) { foreach($r as $rr) { $o .= replace_macros($tpl, array( - '$photo' => $rr['thumb'] . '?rev=' . urlencode($rr['picdate']), + '$photo' => $a->get_cached_avatar_image($rr['thumb']), '$id' => $rr['id'], '$alt' => t('Profile Image'), '$profile_name' => $rr['profile-name'],