diff options
Diffstat (limited to 'mod/profile_photo.php')
-rw-r--r-- | mod/profile_photo.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mod/profile_photo.php b/mod/profile_photo.php index b21d9162a..32ace62f0 100644 --- a/mod/profile_photo.php +++ b/mod/profile_photo.php @@ -68,6 +68,13 @@ function profile_photo_post(&$a) { if($r === false) notice( t('Image size reduction [80] failed.') . EOL ); + $im->scaleImage(48); + + $r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 6, 1); + + if($r === false) + notice( t('Image size reduction [48] failed.') . EOL ); + // Unset the profile photo flag from any other photos I own $r = q("UPDATE `photo` SET `profile` = 0 WHERE `profile` = 1 AND `resource-id` != '%s' AND `uid` = %d", |