7
Hello,
I have been playing around with Formulaire with PHP5 and found an error with the following simple fix -
Here was my problem -
I could create a new form but could not add any elements to the form or delete elements from the original Formulaire sample form.
Solution -
in the class/elements.php file about line 92, the element class name is case specific, so I changed formulaireformulaire to FormulaireFormulaire with capital F's and it worked.
// if( get_class($element) != formulaireformulaire'){
if( get_class($element) != 'FormulaireFormulaire'){
Now I can add new form elements on both on my local windows test version and hosted webserver linux version.
Hope this helps,
Xooper