this ignoring stuff is not working
[phpfspot.git] / phpfspot_img.php
index e3b0852108f5bdb49e469b0a68939f3188f9b422..061f56d4f62ec1709aa9ba4f504b56c1f72ca33f 100644 (file)
@@ -25,11 +25,13 @@ class PHPFSPOT_IMG {
 
       $details = $this->parent->get_photo_details($idx);
 
+      /* show original photo */
       if($width == 0) {
          $fullpath = $this->parent->translate_path($details['directory_path'])  ."/". $details['name'];
       }
+      /* show thumbnail */
       else {
-         $fullpath = $this->parent->translate_path($details['directory_path'])  ."/thumbs/". $width ."_". $details['name'];
+         $fullpath = $this->parent->cfg->base_path ."/thumbs/". $width ."_". $this->parent->getMD5($idx);
       }
 
       if(!file_exists($fullpath)) {