diff options
Diffstat (limited to 'phpfspot_img.php')
-rw-r--r-- | phpfspot_img.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/phpfspot_img.php b/phpfspot_img.php index e3b0852..061f56d 100644 --- a/phpfspot_img.php +++ b/phpfspot_img.php @@ -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)) { |