1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-20 07:30:16 +01:00

[ticket/14770] Reduce plupload resize quality

PHPBB3-14770
This commit is contained in:
Crizzo 2016-12-18 14:12:03 +01:00
parent b6ea338309
commit 853362ddad

@ -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']
);