diff options
author | Mark Wells <mark@freeside.biz> | 2016-07-05 16:41:25 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-07-05 16:41:25 -0700 |
commit | 2a0b5339081a439a8c5ec1f2b9cd28b63fd3fa49 (patch) | |
tree | 4015464ba4f06c16cd630307dfb910d9390850de /httemplate/elements/xmlhttp.html | |
parent | 3531bdf7f4843562539228d8c973bf649f4819c8 (diff) |
UTF-8 form input vs. xmlhttp, #71347
Diffstat (limited to 'httemplate/elements/xmlhttp.html')
-rw-r--r-- | httemplate/elements/xmlhttp.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/xmlhttp.html b/httemplate/elements/xmlhttp.html index 2f4f0d555..e70871169 100644 --- a/httemplate/elements/xmlhttp.html +++ b/httemplate/elements/xmlhttp.html @@ -44,7 +44,7 @@ my %initialized = ();#won't work if component is "preloaded"... so don't do that len = args.length - 1; } for (var i = 0; i < len; i++) - content = content + "&arg=" + escape(args[i]); + content = content + "&arg=" + encodeURIComponent(args[i]); content = content.replace( /[+]/g, '%2B'); // fix unescaped plus signs if ( '<%$method%>' == 'GET' ) { |