I have configured the config.php
with:
$config['global_xss_filtering'] = TRUE;
But I need to disable xss_clean for a specific post
parameter. Is there anyway to add exception to this global setting. This will also reduce me space and time for providing $data = $this->security->xss_clean($data);
in all methods except the one I dont need.