]> git.mxchange.org Git - friendica.git/blobdiff - boot.php
Merge pull request #792 from annando/master
[friendica.git] / boot.php
index 2b58d805a5a74b36d9c53d347e4f5c3078cbb03b..e94cdcd9007fae6b3de8f8c8d977fbc1735a7577 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -2177,3 +2177,9 @@ function set_template_engine(&$a, $engine = 'internal') {
        $a->set_template_engine($engine);
 }
 
+if(!function_exists('exif_imagetype')) {
+        function exif_imagetype($file) {
+                $size = getimagesize($file);
+                return($size[2]);
+        }
+}