# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: E:\ruby\projects\redmine\public\javascripts # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: application.js --- application.js Base (BASE) +++ application.js Locally Modified (Based On LOCAL) @@ -56,7 +56,7 @@ function promptToRemote(text, param, url) { value = prompt(text + ':'); if (value) { - new Ajax.Request(url + '?' + param + '=' + value, {asynchronous:true, evalScripts:true}); + new Ajax.Request(url + '?' + param + '=' + encodeURIComponent(value), {asynchronous:true, evalScripts:true}); return false; } }