From 3b285de30751d2dec0e242dcc50aa67147ada191 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Thu, 21 Jun 2007 18:49:03 +0000 Subject: issue14, thumbs are now stored outside F-Spot's directory structure issue12, file is not stored in phpfspot db if the thumbnail generation failed git-svn-id: file:///var/lib/svn/phpfspot/trunk@119 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- phpfspot_img.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'phpfspot_img.php') 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)) { -- cgit v1.2.3-18-g5258