DataObjects/Core_watch.php
[Pman.Core] / Images.php
index af922db..3e2680f 100644 (file)
@@ -229,14 +229,22 @@ class Pman_Core_Images extends Pman
             $x->serve($this->method);
             exit;
         }
-        echo "SKALING?  $this->size";
+        //echo "SKALING?  $this->size";
         // acutally if we generated the image, then we do not need to validate the size..
         
+        
+        
         // if the mimetype is not converted..
         // then the filename should be original.{size}.jpeg
         $fn = $img->getStoreName() . '.'. $this->size . '.jpeg'; // thumbs are currenly all jpeg.!???
-      // var_dump($fn);
+        
         if (!file_exists($fn)) {
+            $fn = $img->getStoreName()  . '.'. $this->size . '.'. $img->fileExt();
+            $this->as_mimetype = $img->mimetype;
+        }
+        
+        if (!file_exists($fn)) {            
+            
             $this->validateSize();
         }