missing closing parenthesis

This commit is contained in:
Mario Vavti 2019-01-03 19:18:49 +01:00
parent ab9b8b8b0a
commit b93bc142d3

View File

@ -493,7 +493,7 @@ function guess_image_type($filename, $headers = '') {
$ph = photo_factory(''); $ph = photo_factory('');
$types = $ph->supportedTypes(); $types = $ph->supportedTypes();
if(array_key_exists($hdrs['content-type'], $types) if(array_key_exists($hdrs['content-type'], $types))
$type = $hdrs['content-type']; $type = $hdrs['content-type'];
} }
} }