diff --git a/include/Photo.php b/include/Photo.php
index 982e435f1..0fa020728 100644
--- a/include/Photo.php
+++ b/include/Photo.php
@@ -38,18 +38,6 @@ class Photo {
         return $t;
     }
 
-    /**
-     * Maps Mime types to Imagick formats
-     */
-    static function get_FormatsMap() {
-        $m = array(
-            'image/jpeg' => 'JPG',
-            'image/png' => 'PNG',
-            'image/gif' => 'GIF'
-        );
-        return $m;
-    }
-
     public function __construct($data, $type=null) {
         $this->imagick = class_exists('Imagick');
         $this->types = $this->supportedTypes();
@@ -99,6 +87,18 @@ class Photo {
         return $this->imagick;
     }
 
+    /**
+     * Maps Mime types to Imagick formats
+     */
+    public function get_FormatsMap() {
+        $m = array(
+            'image/jpeg' => 'JPG',
+            'image/png' => 'PNG',
+            'image/gif' => 'GIF'
+        );
+        return $m;
+    }
+
     public function is_valid() {
         if($this->is_imagick())
             return ($this->image !== FALSE);