you need to change the conditional in the PHP file where it checks to see if all questions have been answered to match your new format.
I don't have the files where i can look at them right now, but the line you are looking for is marked with a comment, it is a long string of if ($variable1 == "" OR $variable2 == "" OR etc...
You need to change all of the previously used variable names into the variable names you are using now:
$normalanswer1
$normalanswer2
$normalanswer3
$normalanswer4
$normalanswer5
$longanswer6
$longanswer7
If that isn't clear enough, I will post the specific line you need to change later when I get back home
|