diff options
author | Dhruv Goel <dhruv.goel92@gmail.com> | 2015-04-14 09:09:14 +0530 |
---|---|---|
committer | Dhruv Goel <dhruv.goel92@gmail.com> | 2015-04-14 09:09:14 +0530 |
commit | ba1e3fd66173ccecf29f8dfef761772322182ff0 (patch) | |
tree | f40cd7f1e5550134a15162f5527cbecaa1e0ce18 /phpBB | |
parent | a151ad912a21e9f7ba4d5ef3bbee32b725cd1c5d (diff) | |
parent | 366dfce84602801c2a5da114fe4845d181fed3e8 (diff) | |
download | forums-ba1e3fd66173ccecf29f8dfef761772322182ff0.tar forums-ba1e3fd66173ccecf29f8dfef761772322182ff0.tar.gz forums-ba1e3fd66173ccecf29f8dfef761772322182ff0.tar.bz2 forums-ba1e3fd66173ccecf29f8dfef761772322182ff0.tar.xz forums-ba1e3fd66173ccecf29f8dfef761772322182ff0.zip |
Merge pull request #3533 from Elsensee/ticket/13756
[ticket/13756] Fix resize after upload with plupload
Diffstat (limited to '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'] ); } |