From 60866f64c883091a7264299e3094c2ce733bfe91 Mon Sep 17 00:00:00 2001 From: rvelices Date: Fri, 13 Oct 2006 00:31:29 +0000 Subject: bug 560: url issue when $conf['picture_url_style']='file' and filename is numeric or numeric followed by - git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1561 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/functions_url.inc.php | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/include/functions_url.inc.php b/include/functions_url.inc.php index 7d30577fa..22c91d1e6 100644 --- a/include/functions_url.inc.php +++ b/include/functions_url.inc.php @@ -213,16 +213,15 @@ function make_picture_url($params) } break; case 'file': - if ( isset($params['image_file']) - and !is_numeric($params['image_file']) ) - { - $url .= get_filename_wo_extension($params['image_file']); - } - else + if ( isset($params['image_file']) ) { - $url .= $params['image_id']; + $fname_wo_ext = get_filename_wo_extension($params['image_file']); + if (! preg_match('/^\d+(-|$)/', $fname_wo_ext) ) + { + $url .= $fname_wo_ext; + break; + } } - break; default: $url .= $params['image_id']; } -- cgit v1.2.3