Skip to content

Commit

Permalink
bug:2933 make plain url when picture_url_style='id-file'
Browse files Browse the repository at this point in the history
git-svn-id: http://piwigo.org/svn/trunk@23822 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
mistic100 committed Jul 7, 2013
1 parent d95425b commit 92134bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/functions_url.inc.php
Expand Up @@ -234,7 +234,7 @@ function make_picture_url($params)
$url .= $params['image_id'];
if ( isset($params['image_file']) )
{
$url .= '-'.get_filename_wo_extension($params['image_file']);
$url .= '-'.str2url(get_filename_wo_extension($params['image_file']));
}
break;
case 'file':
Expand Down

0 comments on commit 92134bc

Please sign in to comment.