Enabled Profile photo revisions to be displayed on /profiles page

This commit is contained in:
Zvi ben Yaakov (a.k.a rdc) 2012-06-17 23:24:47 +03:00
parent b0021a4637
commit 1ee22a749e
1 changed files with 2 additions and 2 deletions

View File

@ -635,7 +635,7 @@ function profiles_content(&$a) {
}
else {
$r = q("SELECT * FROM `profile` WHERE `uid` = %d",
$r = q("SELECT `profile`.*, `contact`.`avatar-date` AS picdate FROM `profile` LEFT JOIN `contact` on `contact`.`uid` = `profile`.`uid` WHERE `profile`.`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'],
'$photo' => $rr['thumb'] . '?rev=' . urlencode($rr['picdate']),
'$id' => $rr['id'],
'$alt' => t('Profile Image'),
'$profile_name' => $rr['profile-name'],