Search code examples
phpcodeigniterckeditor

Font Size is not saving in DB - ckeditor


I am using Full package of ckeditor and here i am facing a strange problem from 2 days. Everything is working fine but font-size is not working at all . when I select a line and change it's font size, it shows the correct code in source mode:

<span style="font-size:9px">My selected line</span> 

but when i save this result in database it converts this line to something like below.

<span xss=removed> My selected line</span>

I am using CodeIgniter and not using any special function before saving my data. just using post function of CI.


Solution

  • Seems like codeigniter cleans your html against XSS attacks.

    Use it with caution:

    $this->input->post('html', false);

    The second parameter will disable the XSS filter.