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/wall_upload.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/wall_upload.php')
-rw-r--r-- | mod/wall_upload.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/wall_upload.php b/mod/wall_upload.php index 9875a01ad..77c4eb4fd 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -34,7 +34,7 @@ function wall_upload_post(&$a) { $smallest = 0; - $r = $ph->store(get_uid(), 0, $hash, $filename, t('Wall Photos'), 0 ); + $r = $ph->store(local_user(), 0, $hash, $filename, t('Wall Photos'), 0 ); if(! $r) { echo ( t('Image upload failed.') . EOL); @@ -43,14 +43,14 @@ function wall_upload_post(&$a) { if($width > 640 || $height > 640) { $ph->scaleImage(640); - $r = $ph->store(get_uid(), 0, $hash, $filename, t('Wall Photos'), 1 ); + $r = $ph->store(local_user(), 0, $hash, $filename, t('Wall Photos'), 1 ); if($r) $smallest = 1; } if($width > 320 || $height > 320) { $ph->scaleImage(320); - $r = $ph->store(get_uid(), 0, $hash, $filename, t('Wall Photos'), 2 ); + $r = $ph->store(local_user(), 0, $hash, $filename, t('Wall Photos'), 2 ); if($r) $smallest = 2; } |