Ensure , is escaped in ::js::escape #45

Merged
af123 merged 1 commits from df/webif:df-listdirs-patch-v2 into master 2021-04-10 08:52:33 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ proc ::js::_unescape {str} {
proc ::js::escape {str} {
return [subst -nobackslashes -novariables \
[regsub -all -- {[^A-Za-z0-9@*_+-./]+} $str \
[regsub -all -- {[^A-Za-z0-9@*_+./-]+} $str \
{[::js::_escape {&}]}]]
}