همه عبارات JRequest را به JFactory تبدیل کردم ولی درست نشد.
البته گفته شده به این صورت تغییر دهید، ولی خب ما در اینجا این کد ها را نداریم
$post=JRequest::get('post');
JRequest::getVar('badwords');
//to
$input=JFactory::getApplication()->input;
$post=$input->post;
$input->post->get('badwords')
<br>//from
$task = JRequest::getVar('task');
//to
$task=$input->get('task');
<br>//from
$groupid = JRequest::getVar('id');
//to
$groupid=$input->get('id');
<br>//from
$limitstart=JRequest::getVar('limitstart', 0, '', 'int');
//to
$limitstart=$input->get('limitstart','0','INT');
<br>//from
$controller=JRequest::getWord('controller');
//to
$controller=$input->get('controller');
<br>//from
$controller->execute(JRequest::getCmd('action'));
//to
$controller->execute($input->get('action'));