| Issue 254: | "%23" (encoded #) for some reason is converted to "." in the request | |
| 1 person starred this issue and may be notified of changes. | Back to list |
GET /SomeClass/1.someMethod("a%23b")
...should result in arg1 to someMethod being "a#b", right? But what's
coming in instead is "a.b"
|
|
,
Oct 30, 2009
(No comment was entered for this change.)
Status: Fixed
|
|
,
Nov 04, 2009
Stupid google won'tl et me reopen. But in any event... The problem isn't actually fixed -- "%23" now comes in as "param0", a second %23 is param1, etc. Theoretically I could replace(/param\d/g, "#") but this would be a pretty bad hack. |
|
|
|