##// END OF EJS Templates
Fixed: encoding problem when adding non-ASCII issue category in the new issue page (#1286)....
Jean-Philippe Lang -
r1428:62125cad33f8
parent child
Show More
@@ -56,7 +56,7 function setPredecessorFieldsVisibility() {
56 function promptToRemote(text, param, url) {
56 function promptToRemote(text, param, url) {
57 value = prompt(text + ':');
57 value = prompt(text + ':');
58 if (value) {
58 if (value) {
59 new Ajax.Request(url + '?' + param + '=' + value, {asynchronous:true, evalScripts:true});
59 new Ajax.Request(url + '?' + param + '=' + encodeURIComponent(value), {asynchronous:true, evalScripts:true});
60 return false;
60 return false;
61 }
61 }
62 }
62 }
General Comments 0
You need to be logged in to leave comments. Login now