diff options
author | Friendika <info@friendika.com> | 2010-11-04 23:50:32 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-04 23:50:32 -0700 |
commit | b94cb8d234d70bc534ad1cef767b9f62d10eef26 (patch) | |
tree | 9e8cf0d529421c7b8d8e389478be8c4b196d11e6 /include/items.php | |
parent | 71ae08d506130e45f68cf4e09d71f3a1c2e2d782 (diff) | |
download | volse-hubzilla-b94cb8d234d70bc534ad1cef767b9f62d10eef26.tar.gz volse-hubzilla-b94cb8d234d70bc534ad1cef767b9f62d10eef26.tar.bz2 volse-hubzilla-b94cb8d234d70bc534ad1cef767b9f62d10eef26.zip |
add micro profile photo
Diffstat (limited to 'include/items.php')
-rw-r--r-- | include/items.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index a1aaecc8a..323117e6c 100644 --- a/include/items.php +++ b/include/items.php @@ -792,6 +792,10 @@ function consume_feed($xml,$importer,$contact, &$hub) { $img->scaleImage(80); $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 5); + + $img->scaleImage(48); + $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 6); + if($r) q("UPDATE `contact` SET `avatar-date` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1", dbesc(datetime_convert()), |