]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #792 from annando/master
authorfabrixxm <fabrix.xm@gmail.com>
Wed, 23 Oct 2013 07:02:51 +0000 (00:02 -0700)
committerfabrixxm <fabrix.xm@gmail.com>
Wed, 23 Oct 2013 07:02:51 +0000 (00:02 -0700)
Bugfix: The function "exif_imagetype" doesn't seem to be available at every system. So we emulate it.

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]);
+        }
+}