Topic: This is correct?

This would be correct or needs another code more to prevent xss

if (Request::post('data')) $data = Security::xssClean(Request::post('data')); else $data = Option::get('data');

nakome's Website

Re: This is correct?

no, just $data = Request::post('data');
because post and get data will cleanup automatically

Re: This is correct?

ah ok thanks

nakome's Website