diff options
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index ccfbd25..b8f45a8 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -540,7 +540,7 @@ class PHPFSPOT { return; } - $orig_path = $this->translate_path($this->parse_uri($details['uri'], 'fullpath')); + $orig_path = $this->translate_path($this->parse_uri($details['uri'])); $thumb_path = $this->get_thumb_path($this->cfg->photo_width, $photo); if(!file_exists($orig_path)) { @@ -1554,7 +1554,7 @@ class PHPFSPOT { $details = $this->get_photo_details($idx); /* calculate file MD5 sum */ - $full_path = $this->translate_path($this->parse_uri($details['uri'], 'fullpath')); + $full_path = $this->translate_path($this->parse_uri($details['uri'])); if(!file_exists($full_path)) { $this->_error("File ". $full_path ." does not exist\n"); @@ -2199,7 +2199,7 @@ class PHPFSPOT { <br> ". $details['description']); - $orig_path = $this->translate_path($this->parse_uri($details['uri'], 'fullpath')); + $orig_path = $this->translate_path($this->parse_uri($details['uri'])); /* get EXIF information if JPEG */ if($details['mime'] == "image/jpeg") { |