diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2015-04-11 23:08:45 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2015-04-11 23:08:45 +0200 |
commit | 70c74df00981303b8ebcfdd83acd7c308658eeeb (patch) | |
tree | 08ef25e1e36772233cb3122e68bf21bd9d48951e /phpBB/phpbb | |
parent | a151ad912a21e9f7ba4d5ef3bbee32b725cd1c5d (diff) | |
download | forums-70c74df00981303b8ebcfdd83acd7c308658eeeb.tar forums-70c74df00981303b8ebcfdd83acd7c308658eeeb.tar.gz forums-70c74df00981303b8ebcfdd83acd7c308658eeeb.tar.bz2 forums-70c74df00981303b8ebcfdd83acd7c308658eeeb.tar.xz forums-70c74df00981303b8ebcfdd83acd7c308658eeeb.zip |
[ticket/13756] Fix resize after upload with plupload
PHPBB3-13756
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/plupload/plupload.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/plupload/plupload.php b/phpBB/phpbb/plupload/plupload.php index fcce5b3bd8..ca78167ec0 100644 --- a/phpBB/phpbb/plupload/plupload.php +++ b/phpBB/phpbb/plupload/plupload.php @@ -267,8 +267,8 @@ class plupload { $resize = sprintf( 'resize: {width: %d, height: %d, quality: 100},', - (int) $this->config['img_max_height'], - (int) $this->config['img_max_width'] + (int) $this->config['img_max_width'], + (int) $this->config['img_max_height'] ); } |