Hey there.
I have the same issue as "djkirstyjay".
The $params variable is an array and sent to CreateFrontendFormStart with no problem but lost in CreateFormStart.
Apparently, the call to CreateFormStart in CreateFrontendFormStart has a wrong number of parameters!
Change line 1827 in class.module.inc.php from :
Code: Select all
return $this->CreateFormStart($id,$action,$returnid,$method,$post,$enctype,$inline,$idsuffix,$params);
to
Code: Select all
return $this->CreateFormStart($id,$action,$returnid,$method,$enctype,$inline,$idsuffix,$params);
Looks like a CMSMS issue to me (what's this $post variable??)