diff --git a/CHANGELOG b/CHANGELOG index a87914fe4..3625309ba 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -58,6 +58,7 @@ CHANGELOG Roundcube Webmail - Fix bug in rcube_utils::parse_hosts() where %t, %d, %z could return only tld (#6746) - Fix bug where Next/Prev button in mail view didn't work with multi-folder search result (#6793) - Fix bug where selection of columns on messages list wasn't working +- Fix bug in converting multi-page Tiff images to Jpeg (#6824) RELEASE 1.4-rc1 --------------- diff --git a/program/lib/Roundcube/rcube_image.php b/program/lib/Roundcube/rcube_image.php index 2d10578ce..50eb20c9a 100644 --- a/program/lib/Roundcube/rcube_image.php +++ b/program/lib/Roundcube/rcube_image.php @@ -323,7 +323,7 @@ class rcube_image $p['out'] = $filename; $p['type'] = self::$extensions[$type]; - $result = rcube::exec($convert . ' 2>&1 -colorspace sRGB -strip -quality 75 {in} {type}:{out}', $p); + $result = rcube::exec($convert . ' 2>&1 -colorspace sRGB -strip -flatten -quality 75 {in} {type}:{out}', $p); if ($result === '') { chmod($filename, 0600);