]> git.mxchange.org Git - friendica.git/blobdiff - mod/profile_photo.php
eradicate redundant get_uid function
[friendica.git] / mod / profile_photo.php
index 07df671da46e101dcaa76992a90f682ea91eab7d..b21d9162a01e3622ccf6ec8a8abfc6e1f66efe5b 100644 (file)
@@ -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 );