codeigniter and tiny_mce wrong input
I'm trying to use tiny_mce along with my codeigniter application. However, it looks like codeigniter escape almost everything from the textarea, how can i fix this?
I'm using the form helper and the form validation开发者_运维问答 for the textaera form.
What should i do?
Looks like this thread shows some solutions to this problem.
If you’re using XSS filtering in CodeIgniter, you may find it strips out the code Tiny creates. $this->input->post('string', true)
is XSS filtered, remove the true
boolean to stop it.
精彩评论