diff --git a/config/safetyquestions.php b/config/safetyquestions.php index f5982400..cdfbbdf9 100644 --- a/config/safetyquestions.php +++ b/config/safetyquestions.php @@ -77,8 +77,8 @@ { $buttontext="Save safety question"; echo "\n"; - echo "id\">\n"; $q=mysql_query("SELECT * FROM safetyquestions WHERE id='".$_GET['edit']."' AND year='".$config['FAIRYEAR']."'"); + echo "\n"; if(!$r=mysql_fetch_object($q)) { $showform=false; diff --git a/register_participants_safety.php b/register_participants_safety.php index c8844766..e2d7d2ed 100644 --- a/register_participants_safety.php +++ b/register_participants_safety.php @@ -94,7 +94,7 @@ echo mysql_error(); $newstatus=safetyStatus(); if($newstatus!="complete") { - echo error(i18n("Safety Information Incomplete. You must agree to all safety questions!")); + echo error(i18n("Safety Information Incomplete. You must agree to / answer all required safety questions!")); } else if($newstatus=="complete") { @@ -116,13 +116,27 @@ else if($newstatus=="complete") $num=1; while($r=mysql_fetch_object($q)) { - echo "$num. ".i18n($r->question).""; + echo "$num. "; + if($r->required=="yes") echo REQUIREDFIELD; + echo i18n($r->question).""; echo ""; if($r->type=="check") { if($safetyanswers[$r->id]=="checked") $ch="checked=\"checked\""; else $ch=""; echo "id]\" value=\"checked\" />"; } + else if($r->type=="yesno") + { + echo ""; + if($safetyanswers[$r->id]=="yes") $ch="checked=\"checked\""; else $ch=""; + echo "id]\" value=\"yes\" />"; + echo i18n("Yes"); + echo "
"; + if($safetyanswers[$r->id]=="no") $ch="checked=\"checked\""; else $ch=""; + echo "id]\" value=\"no\" />"; + echo i18n("No"); + echo ""; + } echo ""; echo ""; $num++;