diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-01-03 19:18:49 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-01-03 19:18:49 +0100 |
commit | b93bc142d3e6efa050d8cd75b367f607ee88eb2e (patch) | |
tree | 3843118ac23584abd1d7c9a2d375246ad1c22781 | |
parent | ab9b8b8b0aa29c05acc627dac4989244959b9a39 (diff) | |
download | volse-hubzilla-b93bc142d3e6efa050d8cd75b367f607ee88eb2e.tar.gz volse-hubzilla-b93bc142d3e6efa050d8cd75b367f607ee88eb2e.tar.bz2 volse-hubzilla-b93bc142d3e6efa050d8cd75b367f607ee88eb2e.zip |
missing closing parenthesis
-rw-r--r-- | include/photo/photo_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/photo/photo_driver.php b/include/photo/photo_driver.php index 84943bc27..5c8ed9bdc 100644 --- a/include/photo/photo_driver.php +++ b/include/photo/photo_driver.php @@ -493,7 +493,7 @@ function guess_image_type($filename, $headers = '') { $ph = photo_factory(''); $types = $ph->supportedTypes(); - if(array_key_exists($hdrs['content-type'], $types) + if(array_key_exists($hdrs['content-type'], $types)) $type = $hdrs['content-type']; } } |