// Add fix for #PSFV-367 adding ',' to the replace rule

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12430 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vSchoener
2012-01-16 13:31:57 +00:00
parent a7bee33635
commit 8df980fd0d
+1 -1
View File
@@ -59,7 +59,7 @@ function str2url(str,encoding,ucfirst)
// Add special char not used for url rewrite
str = str.replace(/[ ]/g, '-');
str = str.replace(/[\/\\"'|]*/g, '');
str = str.replace(/[\/\\"'|,;]*/g, '');
if (ucfirst == 1) {
var first_char = str.charAt(0);