aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2004-01-17 23:18:01 +0000
committerz0rglub <z0rglub@piwigo.org>2004-01-17 23:18:01 +0000
commit267f5280401ec10892041c8810c48acf7242817c (patch)
tree699f87957ffd94b891000d1628ac201bff66908e
parentb4ffea31f4a95811a4f72ce250247f2fd10ad31d (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
-rw-r--r--picture.php2
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'].' : ';