summaryrefslogtreecommitdiffstats
path: root/phpfspot_img.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-06-21 18:49:03 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-06-21 18:49:03 +0000
commit3b285de30751d2dec0e242dcc50aa67147ada191 (patch)
tree5e93492cea6c03e5624fcc172625acffb10bb5ec /phpfspot_img.php
parent322fc50246f37ef26090dd954aa78b2649218c38 (diff)
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
Diffstat (limited to 'phpfspot_img.php')
-rw-r--r--phpfspot_img.php4
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)) {