aboutsummaryrefslogtreecommitdiffstats
path: root/mod/profiles.php
diff options
context:
space:
mode:
authorMichael Vogel <icarus@dabo.de>2012-06-23 12:50:00 +0200
committerMichael Vogel <icarus@dabo.de>2012-06-23 12:50:00 +0200
commita81af2e042ae133bec3097488feeaa1318dc798b (patch)
tree25d2103fb3ce9edf45c0f7d1142b5cd3f63f8591 /mod/profiles.php
parent7a4ad4564dc4fa49aa860a10949ffe8958305f3a (diff)
parentbf47bf5ba015a844919362a56903eb82c064bee9 (diff)
downloadvolse-hubzilla-a81af2e042ae133bec3097488feeaa1318dc798b.tar.gz
volse-hubzilla-a81af2e042ae133bec3097488feeaa1318dc798b.tar.bz2
volse-hubzilla-a81af2e042ae133bec3097488feeaa1318dc798b.zip
Merge remote branch 'upstream/master'
Conflicts: include/bb2diaspora.php
Diffstat (limited to 'mod/profiles.php')
-rw-r--r--mod/profiles.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/profiles.php b/mod/profiles.php
index 7b6e61ad6..a9da5454c 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'],