diff options
author | Max Kostikov <max@kostikov.co> | 2019-12-07 20:14:17 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-12-07 20:14:17 +0100 |
commit | aed682305173a67b2af1a56b8595445bec690e2b (patch) | |
tree | a022f3769332331a9c30f4b96a81a6b854690767 /include/photo | |
parent | 96f9e515466b749d1e1640aad3fd25bc19399f1a (diff) | |
download | volse-hubzilla-aed682305173a67b2af1a56b8595445bec690e2b.tar.gz volse-hubzilla-aed682305173a67b2af1a56b8595445bec690e2b.tar.bz2 volse-hubzilla-aed682305173a67b2af1a56b8595445bec690e2b.zip |
Add .webp image format support
Diffstat (limited to 'include/photo')
-rw-r--r-- | include/photo/photo_driver.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/photo/photo_driver.php b/include/photo/photo_driver.php index c11580bdc..284206161 100644 --- a/include/photo/photo_driver.php +++ b/include/photo/photo_driver.php @@ -135,6 +135,8 @@ function guess_image_type($filename, $headers = '') { $type = 'image/gif'; elseif(strpos(strtolower($filename),'png') !== false) $type = 'image/png'; + elseif(strpos(strtolower($filename),'webp') !== false) + $type = 'image/webp'; } } |