aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/plupload
diff options
context:
space:
mode:
authorCrizzo <mail@crizzo.de>2016-12-18 14:12:03 +0100
committerCrizzo <mail@crizzo.de>2016-12-18 14:12:03 +0100
commit853362ddad3c3c137894da2357d2cfd0f1816049 (patch)
tree5c67e5b7a915c164654da32a95336531df8632f4 /phpBB/phpbb/plupload
parentb6ea3383098756d5905af9ef1cad98056588ea76 (diff)
downloadforums-853362ddad3c3c137894da2357d2cfd0f1816049.tar
forums-853362ddad3c3c137894da2357d2cfd0f1816049.tar.gz
forums-853362ddad3c3c137894da2357d2cfd0f1816049.tar.bz2
forums-853362ddad3c3c137894da2357d2cfd0f1816049.tar.xz
forums-853362ddad3c3c137894da2357d2cfd0f1816049.zip
[ticket/14770] Reduce plupload resize quality
PHPBB3-14770
Diffstat (limited to 'phpBB/phpbb/plupload')
-rw-r--r--phpBB/phpbb/plupload/plupload.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/plupload/plupload.php b/phpBB/phpbb/plupload/plupload.php
index 7f6267ed32..4d02f4fa59 100644
--- a/phpBB/phpbb/plupload/plupload.php
+++ b/phpBB/phpbb/plupload/plupload.php
@@ -266,7 +266,7 @@ class plupload
if ($this->config['img_max_height'] > 0 && $this->config['img_max_width'] > 0)
{
$resize = sprintf(
- 'resize: {width: %d, height: %d, quality: 100},',
+ 'resize: {width: %d, height: %d, quality: 90},',
(int) $this->config['img_max_width'],
(int) $this->config['img_max_height']
);