diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-01-17 23:18:01 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-01-17 23:18:01 +0000 |
commit | 267f5280401ec10892041c8810c48acf7242817c (patch) | |
tree | 699f87957ffd94b891000d1628ac201bff66908e /picture.php | |
parent | b4ffea31f4a95811a4f72ce250247f2fd10ad31d (diff) |
bug-1_3_0-010 : in picture.php, the previous src picture use two slashes
instead of only one [corrected]
git-svn-id: http://piwigo.org/svn/branches/release-1_3@288 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | picture.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/picture.php b/picture.php index a862af03b..06d57ed27 100644 --- a/picture.php +++ b/picture.php @@ -243,7 +243,7 @@ if ( $page['num'] >= 1 ) $cat_directory = $array_cat_directories[$row['storage_category_id']]; $file = substr( $row['file'], 0, strrpos ( $row['file'], '.' ) ); - $lien_thumbnail = $cat_directory.'/thumbnail/'; + $lien_thumbnail = $cat_directory.'thumbnail/'; $lien_thumbnail.= $conf['prefix_thumbnail'].$file.".".$row['tn_ext']; $prev_title = $lang['previous_image'].' : '; |