Thursday, 27 August 2009

Groupjive invite registered users error fix

It need a add hack for component/com_groupjive/groupjive.php file

Find the $fr_name=addslashes(mosGetParam($_POST,'fr_name',-1));
$fr_email=addslashes(mosGetParam($_POST,'fr_email',-1)); around line 812

and change it to

$fr_name=$_POST['fr_name'];
$fr_email=$_POST['fr_email'];

The invitation will work well..

No comments:

Post a Comment