max the tag tab scrollable - don't know yet why the text runs into the content window
[phpfspot.git] / phpfspot_img.php
index 60c06b00d47a2be5565c300332e44bca353e14ef..e3b0852108f5bdb49e469b0a68939f3188f9b422 100644 (file)
@@ -32,6 +32,13 @@ class PHPFSPOT_IMG {
          $fullpath = $this->parent->translate_path($details['directory_path'])  ."/thumbs/". $width ."_". $details['name'];
       }
 
+      if(!file_exists($fullpath)) {
+         $this->parent->gen_thumb($idx, 0, 1);
+      }
+      if(!is_readable($fullpath)) {
+         die("File ". $fullpath ." is not readable. Check the permissions");
+      }
+
       $tmp = getimagesize($fullpath);
       $mime = $tmp['mime'];