From 958a25c4aaf691075123a8f1314fa28696a976f8 Mon Sep 17 00:00:00 2001 From: james Date: Fri, 27 Jan 2006 01:14:16 +0000 Subject: [PATCH] Fix the safety question yes/no stuff, also fix the editor, it appears to have been broken somehow! --- config/safetyquestions.php | 2 +- register_participants_safety.php | 18 ++++++++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) 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++;