1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-26 16:30:52 +01:00

libpng 1.6 workaround

This commit is contained in:
8chan Admin 2013-12-26 19:58:39 +00:00
parent caeeb9b6cf
commit 10ddf1ab02

View File

@ -361,8 +361,10 @@ class ImageConvert extends ImageBase {
$this->width,
$this->height,
escapeshellarg($this->temp)))) || !file_exists($this->temp)) {
$this->destroy();
error('Failed to resize image!', null, $error);
if (strpos($error, "known incorrect sRGB profile") === "false") {
$this->destroy();
error('Failed to resize image!', null, $error);
}
}
if ($size = $this->get_size($this->temp)) {
$this->width = $size[0];