Error in Conditional form module
DOn't know how to contact the creator of the module.
You should add following code to the conditional form module:
Code:
protected function validator($varInput)
{
if ($this->conditionType=="stop")
{
$this->mandatory = false;
$this->blnSubmitInput = false;
}
return parent::validator($varInput);
}
This is because when selecting to store the form data in the database, it is trying to add also the stop field in the database, which results in a query error.
Re: Error in Conditional form module
Module owner has been contacted. He will include it in the next release.