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

This commit is contained in:
vSchoener
2012-01-16 13:31:57 +00:00
parent 67e1597215
commit e87dfdd133
+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);