diff options
| -rw-r--r-- | it.class | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -522,7 +522,7 @@ static function imageconvert($p)  			list(, $type) = explode(' ', strtolower(it::exec('identify 2>/dev/null {in}', $p))); # for things like eps  	} -	$type = strtr($type, "jpeg" => "jpg", "tiff" => "tif", "ps" => "eps", "ept" => "eps"); +	$type = strtr($type, array("jpeg" => "jpg", "tiff" => "tif", "ps" => "eps", "ept" => "eps"));  	$p += array('type' => $type, 'types' => "bmp,eps,gif,jp2,jpg,png,svg,tif");  	$p['-opts'] = array('-thumbnail' => $p['size']) + (array)$p['-opts']; |