aboutsummaryrefslogtreecommitdiffstats
path: root/include/photo
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-01-03 19:18:49 +0100
committerMario Vavti <mario@mariovavti.com>2019-01-03 19:18:49 +0100
commitb93bc142d3e6efa050d8cd75b367f607ee88eb2e (patch)
tree3843118ac23584abd1d7c9a2d375246ad1c22781 /include/photo
parentab9b8b8b0aa29c05acc627dac4989244959b9a39 (diff)
downloadvolse-hubzilla-b93bc142d3e6efa050d8cd75b367f607ee88eb2e.tar.gz
volse-hubzilla-b93bc142d3e6efa050d8cd75b367f607ee88eb2e.tar.bz2
volse-hubzilla-b93bc142d3e6efa050d8cd75b367f607ee88eb2e.zip
missing closing parenthesis
Diffstat (limited to 'include/photo')
-rw-r--r--include/photo/photo_driver.php2
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'];
}
}