aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Photo
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2023-12-31 09:55:27 +0100
committerMario Vavti <mario@mariovavti.com>2023-12-31 09:55:27 +0100
commit62db8c3969f783897ff2de1bf3250057c37eb422 (patch)
tree4201794d9550de52bd36aead6f494de16340aef9 /Zotlabs/Photo
parentae3db366e50a07b1d960650e8c40a0de09341d10 (diff)
downloadvolse-hubzilla-62db8c3969f783897ff2de1bf3250057c37eb422.tar.gz
volse-hubzilla-62db8c3969f783897ff2de1bf3250057c37eb422.tar.bz2
volse-hubzilla-62db8c3969f783897ff2de1bf3250057c37eb422.zip
fix php errors and deprecation warnings
Diffstat (limited to 'Zotlabs/Photo')
-rw-r--r--Zotlabs/Photo/PhotoGd.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Photo/PhotoGd.php b/Zotlabs/Photo/PhotoGd.php
index c54fa6a7d..6854be0ab 100644
--- a/Zotlabs/Photo/PhotoGd.php
+++ b/Zotlabs/Photo/PhotoGd.php
@@ -17,11 +17,11 @@ class PhotoGd extends PhotoDriver {
$t = [];
$t['image/jpeg'] = 'jpg';
- if(imagetypes() & IMG_PNG)
+ if(\imagetypes() & IMG_PNG)
$t['image/png'] = 'png';
- if(imagetypes() & IMG_GIF)
+ if(\imagetypes() & IMG_GIF)
$t['image/gif'] = 'gif';
- if(imagetypes() & IMG_WEBP)
+ if(\imagetypes() & IMG_WEBP)
$t['image/webp'] = 'webp';
return $t;