diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-10-18 14:34:59 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-10-18 14:34:59 -0700 |
commit | ac824fe83e67950f9303d13d574ff00b57dd5727 (patch) | |
tree | 025eb4346b278d5eb6493bd8b935cf6e842f3db1 /mod/profile_photo.php | |
parent | 103814ab8e6940a8e0e24b618d2e02e0779bc39b (diff) | |
download | volse-hubzilla-ac824fe83e67950f9303d13d574ff00b57dd5727.tar.gz volse-hubzilla-ac824fe83e67950f9303d13d574ff00b57dd5727.tar.bz2 volse-hubzilla-ac824fe83e67950f9303d13d574ff00b57dd5727.zip |
eradicate redundant get_uid function
Diffstat (limited to 'mod/profile_photo.php')
-rw-r--r-- | mod/profile_photo.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mod/profile_photo.php b/mod/profile_photo.php index 07df671da..b21d9162a 100644 --- a/mod/profile_photo.php +++ b/mod/profile_photo.php @@ -45,7 +45,7 @@ function profile_photo_post(&$a) { //dbg(3); $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d AND `scale` = %d LIMIT 1", dbesc($image_id), - dbesc(get_uid()), + dbesc(local_user()), intval($scale)); if(count($r)) { @@ -56,14 +56,14 @@ function profile_photo_post(&$a) { if($im->is_valid()) { $im->cropImage(175,$srcX,$srcY,$srcW,$srcH); - $r = $im->store(get_uid(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 4, 1); + $r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 4, 1); if($r === false) notice ( t('Image size reduction [175] failed.') . EOL ); $im->scaleImage(80); - $r = $im->store(get_uid(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 5, 1); + $r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 5, 1); if($r === false) notice( t('Image size reduction [80] failed.') . EOL ); @@ -72,12 +72,12 @@ function profile_photo_post(&$a) { $r = q("UPDATE `photo` SET `profile` = 0 WHERE `profile` = 1 AND `resource-id` != '%s' AND `uid` = %d", dbesc($base_image['resource-id']), - intval(get_uid()) + intval(local_user()) ); $r = q("UPDATE `contact` SET `avatar-date` = '%s' WHERE `self` = 1 AND `uid` = %d LIMIT 1", dbesc(datetime_convert()), - intval(get_uid()) + intval(local_user()) ); // Update global directory in background @@ -123,7 +123,7 @@ function profile_photo_post(&$a) { $smallest = 0; - $r = $ph->store(get_uid(), 0 , $hash, $filename, t('Profile Photos'), 0 ); + $r = $ph->store(local_user(), 0 , $hash, $filename, t('Profile Photos'), 0 ); if($r) notice( t('Image uploaded successfully.') . EOL ); @@ -132,7 +132,7 @@ function profile_photo_post(&$a) { if($width > 640 || $height > 640) { $ph->scaleImage(640); - $r = $ph->store(get_uid(), 0 , $hash, $filename, t('Profile Photos'), 1 ); + $r = $ph->store(local_user(), 0 , $hash, $filename, t('Profile Photos'), 1 ); if($r === false) notice( t('Image size reduction [640] failed.') . EOL ); |