wtest / httpfox

Automatically exported from code.google.com/p/httpfox
GNU General Public License v2.0
0 stars 0 forks source link

URI encoded data containting the plus character (%2B) is displayed incorrectly as a space #46

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. POST a url encoded form with text like "hello+world"
2. Well get sent as "hello%2Bworld"
3. But in pretty mode, it will say the posted value is "hello world"

What is the expected output? What do you see instead?
Expect "hello+world"
Got "hello world"

What version of the product are you using? On what operating system?
0.8.3 / FF 3.0.3

Please provide any additional information below.
Patch attached to fix the issue. Problem was order of operations decoding
URI data. Need to convert the pluses first, not later.

Original issue reported on code.google.com by tschund...@gmail.com on 6 Oct 2008 at 5:03

Attachments:

GoogleCodeExporter commented 8 years ago
thanks for the patch

Original comment by pappkame...@gmail.com on 23 Dec 2008 at 9:11

GoogleCodeExporter commented 8 years ago

Original comment by pappkame...@gmail.com on 25 Feb 2009 at 8:47