Open GoogleCodeExporter opened 9 years ago
I managed to resolve this by altering the function encode(input).
Instead of using "escape" i replaced it with encodeURIComponent and now it
works.
Original comment by klopp...@hotmail.com
on 18 Dec 2007 at 12:35
this solution does indeed work.
Original comment by siebertm85
on 24 Feb 2009 at 6:11
[deleted comment]
A same issue and the same solution
Furthermore I would ask to add this patch to the next release
(same problem discussed in issue 105)
Index: iui/iui.js
===================================================================
--- iui/iui.js (revision)
+++ iui/iui.js (working copy)
@@ -511,7 +511,7 @@
for (var i = 0; i < inputs.length; ++i)
{
if (inputs[i].name)
- args.push(inputs[i].name + "=" + escape(inputs[i].value));
+ args.push(inputs[i].name + "=" +
encodeURIComponent(inputs[i].value));
}
}
Original comment by xsund...@gmail.com
on 13 Aug 2009 at 7:34
Issue 105 has been merged into this issue.
Original comment by kaisergi...@googlemail.com
on 13 Aug 2009 at 7:58
Issue 120 has been merged into this issue.
Original comment by kaisergi...@googlemail.com
on 13 Aug 2009 at 7:59
Original comment by kaisergi...@googlemail.com
on 13 Aug 2009 at 8:01
Original comment by msgilli...@gmail.com
on 25 Sep 2011 at 11:39
Original issue reported on code.google.com by
klopp...@hotmail.com
on 17 Dec 2007 at 8:27