Merge branch '3.1.x' into 3.2.x

This commit is contained in:
Marc Alexander 2016-12-18 20:40:46 +01:00
commit d3fb01d8f7
No known key found for this signature in database
GPG key ID: 50E0D2423696F995
2 changed files with 2 additions and 2 deletions

View file

@ -266,7 +266,7 @@ class plupload
if ($this->config['img_max_height'] > 0 && $this->config['img_max_width'] > 0) if ($this->config['img_max_height'] > 0 && $this->config['img_max_width'] > 0)
{ {
$resize = sprintf( $resize = sprintf(
'resize: {width: %d, height: %d, quality: 100},', 'resize: {width: %d, height: %d, quality: 85},',
(int) $this->config['img_max_width'], (int) $this->config['img_max_width'],
(int) $this->config['img_max_height'] (int) $this->config['img_max_height']
); );

View file

@ -24,7 +24,7 @@ class phpbb_plupload_test extends phpbb_test_case
array( array(
130, 130,
150, 150,
'resize: {width: 130, height: 150, quality: 100},' 'resize: {width: 130, height: 150, quality: 85},'
), ),
); );
} }