diff options
author | Mario <mario@mariovavti.com> | 2021-01-02 20:56:18 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-02 20:56:18 +0000 |
commit | 474103dc8234b034722c924b5ba0b55f52993930 (patch) | |
tree | 7ce742cea19d7548bd3f07f3eb8fcab57d209be8 /Zotlabs | |
parent | 092a8f2d0569f46895511edce508054f44ae1a15 (diff) | |
download | volse-hubzilla-474103dc8234b034722c924b5ba0b55f52993930.tar.gz volse-hubzilla-474103dc8234b034722c924b5ba0b55f52993930.tar.bz2 volse-hubzilla-474103dc8234b034722c924b5ba0b55f52993930.zip |
remove unused code and fix width and height not defined
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Photos.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Module/Photos.php b/Zotlabs/Module/Photos.php index e79a640c3..099289c03 100644 --- a/Zotlabs/Module/Photos.php +++ b/Zotlabs/Module/Photos.php @@ -277,6 +277,9 @@ class Photos extends \Zotlabs\Web\Controller { unset($arr['os_syspath']); + $width = $r[0]['width']; + $height = $r[0]['height']; + if($width > 1024 || $height > 1024) $ph->scaleImage(1024); $ph->storeThumbnail($arr, PHOTO_RES_1024); @@ -310,8 +313,6 @@ class Photos extends \Zotlabs\Web\Controller { ); } - $item_private = (($str_contact_allow || $str_group_allow || $str_contact_deny || $str_group_deny) ? true : false); - $old_is_nsfw = $p[0]['is_nsfw']; if($old_is_nsfw != $is_nsfw) { $r = q("update photo set is_nsfw = %d where resource_id = '%s' and uid = %d", |