diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-04-12 19:30:12 +0200 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-04-12 19:30:12 +0200 |
commit | cd7402eecd6b5e50dcc62d8394342e6717c359e5 (patch) | |
tree | 1adaeab64d4e9ecc14dd592e4a9725deeff5e526 /phpfspot_img.php | |
parent | 55677896eb839e20542440e51c5737a318240dab (diff) |
parse_uri() needs two parameters
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'phpfspot_img.php')
-rw-r--r-- | phpfspot_img.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpfspot_img.php b/phpfspot_img.php index 412c5f2..f3eb308 100644 --- a/phpfspot_img.php +++ b/phpfspot_img.php @@ -78,7 +78,7 @@ class PHPFSPOT_IMG { /* no width specified - show photo in its original size */ if($width == 0) { - $fullpath = $this->parent->translate_path($this->parent->parse_uri($details['uri'])); + $fullpath = $this->parent->translate_path($this->parent->parse_uri($details['uri'], 'fullpath')); } /* show thumbnail */ else { |