diff options
author | root <root@diekershoff.homeunix.net> | 2011-01-04 14:21:43 +0100 |
---|---|---|
committer | root <root@diekershoff.homeunix.net> | 2011-01-04 14:21:43 +0100 |
commit | cbace1639e7eb9c543a2ba0b51619a7f4164ae64 (patch) | |
tree | 8386dd0848a3ed4e2190ef1f75f6698d44811edd /mod/wall_upload.php | |
parent | 51bcfb649fe2a20c9b8b1e66bc59e39da80d326b (diff) | |
parent | 64628c800d711c3a3c28e2bf94efd7e8b26a5eba (diff) | |
download | volse-hubzilla-cbace1639e7eb9c543a2ba0b51619a7f4164ae64.tar.gz volse-hubzilla-cbace1639e7eb9c543a2ba0b51619a7f4164ae64.tar.bz2 volse-hubzilla-cbace1639e7eb9c543a2ba0b51619a7f4164ae64.zip |
Merge branch 'master' of git://github.com/friendika/friendika
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 eb44012d1..ab06b4b2d 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -76,7 +76,7 @@ function wall_upload_post(&$a) { $smallest = 0; - $r = $ph->store($page_owner_uid, $visitor, $hash, $filename, t('Wall Photos'), 0 ); + $r = $ph->store($page_owner_uid, $visitor, $hash, $filename, t('Wall Photos'), 0, 0, '<0>'); if(! $r) { echo ( t('Image upload failed.') . EOL); @@ -85,14 +85,14 @@ function wall_upload_post(&$a) { if($width > 640 || $height > 640) { $ph->scaleImage(640); - $r = $ph->store($page_owner_uid, $visitor, $hash, $filename, t('Wall Photos'), 1 ); + $r = $ph->store($page_owner_uid, $visitor, $hash, $filename, t('Wall Photos'), 1, 0, '<0>'); if($r) $smallest = 1; } if($width > 320 || $height > 320) { $ph->scaleImage(320); - $r = $ph->store($page_owner_uid, $visitor, $hash, $filename, t('Wall Photos'), 2 ); + $r = $ph->store($page_owner_uid, $visitor, $hash, $filename, t('Wall Photos'), 2, 0, '<0>' ); if($r) $smallest = 2; } |