1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-18 17:14:04 +01:00

Fix last commit

This commit is contained in:
Michael Foster 2013-08-02 20:56:30 -04:00
parent 4fce9b63ae
commit 169dc74938

View File

@ -294,7 +294,7 @@ class ImageConvert extends ImageBase {
error('Failed to resize image!');
}
} else {
if (shell_exec('convert ' . sprintf($config['convert_args'], $this->width, $this->height) .
if (shell_exec('convert -flatten ' . sprintf($config['convert_args'], $this->width, $this->height) .
escapeshellarg($this->src . '[0]') . " " . escapeshellarg($this->temp)) || !file_exists($this->temp))
error('Failed to resize image!');
}