From e8167a2fd69bd7357f63fbb855a3fc6f54c85a13 Mon Sep 17 00:00:00 2001 From: james Date: Fri, 10 Dec 2004 21:40:31 +0000 Subject: [PATCH] Whoops that should be $required=="yes" not just $required --- register_participants.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/register_participants.inc.php b/register_participants.inc.php index 2fa79473..34e4a451 100644 --- a/register_participants.inc.php +++ b/register_participants.inc.php @@ -127,7 +127,7 @@ function safetyStatus() $q=mysql_query("SELECT * FROM safetyquestions ORDER BY ord"); while($r=mysql_fetch_object($q)) { - if($r->required && !$safetyanswers[$r->id]) + if($r->required=="yes" && !$safetyanswers[$r->id]) { return "incomplete"; }