diff options
author | Friendika <info@friendika.com> | 2011-01-04 02:01:07 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-01-04 02:01:07 -0800 |
commit | 15c81716e8cbb916e9bfca5f0d519d9df5baa063 (patch) | |
tree | c0d8a3895d4d9d676cde5cf0507190ea48690afc /mod/wall_upload.php | |
parent | f057cc3a70dd7435b4e9e8a2a07406f0f25e3f2a (diff) | |
download | volse-hubzilla-15c81716e8cbb916e9bfca5f0d519d9df5baa063.tar.gz volse-hubzilla-15c81716e8cbb916e9bfca5f0d519d9df5baa063.tar.bz2 volse-hubzilla-15c81716e8cbb916e9bfca5f0d519d9df5baa063.zip |
much better solution to privacy on ajax wall photos
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; } |