diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-06-07 06:45:08 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-06-07 08:45:58 +0200 |
commit | a3f726baa8465d8f7a5cd766aa92e03569d9e45f (patch) | |
tree | b503505e3d21668e41c6a95a2c5be3536956e86e /Zotlabs | |
parent | e4ca3609d90bb437061e4b8db95ed0424b25eb76 (diff) | |
download | volse-hubzilla-a3f726baa8465d8f7a5cd766aa92e03569d9e45f.tar.gz volse-hubzilla-a3f726baa8465d8f7a5cd766aa92e03569d9e45f.tar.bz2 volse-hubzilla-a3f726baa8465d8f7a5cd766aa92e03569d9e45f.zip |
fix embedphotos image size
(cherry picked from commit ebc2b23c3a2c83ad62ba301d0b94671e4691689a)
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Embedphotos.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Embedphotos.php b/Zotlabs/Module/Embedphotos.php index 8b0421457..6a88513dc 100644 --- a/Zotlabs/Module/Embedphotos.php +++ b/Zotlabs/Module/Embedphotos.php @@ -53,7 +53,7 @@ class Embedphotos extends \Zotlabs\Web\Controller { $channel = \App::get_channel(); $output = EMPTY_STR; if($channel) { - $resolution = ((feature_enabled($channel['channel_id'],'large_photos')) ? 2 : 3); + $resolution = ((feature_enabled($channel['channel_id'],'large_photos')) ? 1 : 2); $r = q("select mimetype, height, width from photo where resource_id = '%s' and $resolution = %d and uid = %d limit 1", dbesc($resource), intval($resolution), |