aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/plupload
diff options
context:
space:
mode:
authorOliver Schramm <oliver.schramm97@gmail.com>2015-04-11 23:08:45 +0200
committerOliver Schramm <oliver.schramm97@gmail.com>2015-04-11 23:08:45 +0200
commit70c74df00981303b8ebcfdd83acd7c308658eeeb (patch)
tree08ef25e1e36772233cb3122e68bf21bd9d48951e /phpBB/phpbb/plupload
parenta151ad912a21e9f7ba4d5ef3bbee32b725cd1c5d (diff)
downloadforums-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/plupload')
-rw-r--r--phpBB/phpbb/plupload/plupload.php4
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']
);
}