DataObjects/core.sql
[Pman.Core] / Images.php
index 80f1e7d..fcae94e 100644 (file)
@@ -215,12 +215,10 @@ class Pman_Core_Images extends Pman
         // 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 FILEPART.{size}.jpg
-        $ar = explode('.', $img->getStoreName());
-        $ext = array_pop($ar);
-        $ar[] = $this->size;
-        $ar[] = $ext;
-        if (!file_exists(implode('.', $ar))) {
+        // 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)) {
             $this->validateSize();
         }