DataObjects/core.sql
[Pman.Core] / Images.php
index 4f84add..fcae94e 100644 (file)
@@ -215,17 +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
-        $fn = $img->getStoreName();
-        $dir = dirname($fn);
-        $file = basename($fn);
-        $ar = explode('.', $file);
-        $ext = array_pop($ar);
-        $ar[] = $this->size;
-        $ar[] = $ext;
-        
-        if (!file_exists($dir .'/'. implode('.', $ar))) {
-            var_dump($dir .'/'. 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();
         }