From e2eff96db98fc471e385ece0bbdbe96b64e29de7 Mon Sep 17 00:00:00 2001 From: james Date: Tue, 13 Mar 2007 14:34:02 +0000 Subject: [PATCH] Show the link to the Confirmed Participants page once the date > regclose. The list will be empty (but with a notice to that affect) until the date that the list is defined to be posted. This should hopefully prevent the frantic phone/emails "i sent my forms three days ago why havent you received them?!?!?!?!" --- common.inc.php | 2 +- confirmed_participants.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common.inc.php b/common.inc.php index d10bd16..cfd594e 100644 --- a/common.inc.php +++ b/common.inc.php @@ -418,7 +418,7 @@ echo "

".i18n($config['fairname'])."

"; //only display it if a date is set to begin with. if($config['dates']['postparticipants'] && $config['dates']['postparticipants']!="0000-00-00 00:00:00") { - $q=mysql_query("SELECT (NOW()>'".$config['dates']['postparticipants']."') AS test"); + $q=mysql_query("SELECT (NOW()>'".$config['dates']['regclose']."') AS test"); $r=mysql_fetch_object($q); if($r->test==1) { diff --git a/confirmed_participants.php b/confirmed_participants.php index 2ac98d4..b78c3b8 100644 --- a/confirmed_participants.php +++ b/confirmed_participants.php @@ -32,7 +32,7 @@ if($r->test!=1) { list($d,$t)=split(" ",$config['dates']['postparticipants']); - echo i18n("Confirmed participants (that signature forms have been received for) will be posted here on %1 at %2",array($d,$t)); + echo i18n("Confirmed participants (that signature forms have been received for) will be posted here on %1 at %2. Please do not contact the fair to inquire about receipt of your signature form until after this date (and only if you are not listed here after this date).",array($d,$t)); } else {