commit | 5ac428bea999a332b46b17fe26ee0045e5cfd39c | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@devilix.net> | Wed Jan 08 16:07:31 2014 +0200 |
committer | Andrey Andreev <narf@devilix.net> | Wed Jan 08 16:07:31 2014 +0200 |
tree | 7c7c758b77d39690093e68132026677a1a7f0b8b | |
parent | 119d8a7547e155edaaa53682b9247cd7e80d8c9d [diff] |
Fix #148 CI_Input::_clean_input_data() assumed that all input data is URL-encoded while sanitizing it. However, PHP already performs URL-decoding on it, so this is either redudant or overly intrusive as it resulted in many, many reports of data containing '%' followed by 1 numeric characters being essentially destroyed. Supersedes PR #1229