#5415 closed defect (fixed)
correction of [11732]
Reported by: | guest | Owned by: | Adam Peller |
---|---|---|---|
Priority: | high | Milestone: | 1.1 |
Component: | Core | Version: | 1.0 |
Keywords: | xhr objectToQuery | Cc: | |
Blocked By: | Blocking: |
Description
There is a little bug introduced in [11732], in xhr.js (objectToQuery). The bug is that if I have a form input with a name containing encodeable charcters, they won't be sent. This is because of the line 105: name=enc(name), followed by the line var value=map[name]. In order to make this working, you have to encode the name after retrieving the value, or it won't find anything in the map.
I attach a patch to this request, but it's really nothing, just swap these two lines.
Attachments (1)
Change History (5)
Changed 15 years ago by
comment:1 Changed 15 years ago by
Owner: | changed from anonymous to Adam Peller |
---|
comment:2 Changed 15 years ago by
Milestone: | 1.0.3 → 1.1 |
---|
comment:3 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
thanks for picking up on this