Does GC already help me prevent Cross Site Scripting (XSS) from data entered into the crud? If not how should I protect my site from data entered into the CRUD?
note: I found that it was added in.
$this->load->config('grocery_crud');
$this->config->set_item('grocery_crud_xss_clean', false);
Is there anything that I need to do to get this functionality or is automatic?