hmm ... I am not sure this is a bug or not. Let me try to explain what happened here.
http://codeigniter.com/user_guide/libraries/input.html
$this->input->post('some_data', TRUE);
I was trying to run through XSS filter by setting 2nd parameter to “true”.
Somehow the XSS filter convert or encoded my string to other encoded characters which trigger a sql error due to using diff. encoded in the same string.
If you enter “Ê” at input text field and submit, you will get the other encoded character.
like http://en.wikipedia.org/wiki/Ê
Please let me know if you need other information. :D
