From 52b668296eaa56c477cf81ef522ed1c7a24712a7 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Wed, 8 Dec 2010 09:13:25 -0800 Subject: fixed path problem (missing "/") the latest version in the database seems to save a path without the trailing slash --- phpfspot.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpfspot.class.php b/phpfspot.class.php index 111b03e..f611391 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -523,7 +523,7 @@ class PHPFSPOT { $query_str = " SELECT p.id as id, - p.base_uri || p.filename as uri, + p.base_uri ||'/'|| p.filename as uri, p.time as time, p.description as description, p.rating as rating @@ -596,7 +596,7 @@ class PHPFSPOT { SELECT version_id, name, - base_uri || filename as uri + base_uri || '/'||filename as uri FROM photo_versions WHERE -- cgit v1.2.3-18-g5258