From 599f740cd327a30961250a937305a9e66011c90a Mon Sep 17 00:00:00 2001
From: james <james>
Date: Thu, 24 Nov 2005 19:06:38 +0000
Subject: [PATCH] Only display Divisions from the current FAIRYEAR

---
 register_participants_project.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/register_participants_project.php b/register_participants_project.php
index 67bee2f8..415ad303 100644
--- a/register_participants_project.php
+++ b/register_participants_project.php
@@ -167,7 +167,7 @@ else if($newstatus=="complete")
 	echo " (".i18n("Grades %1-%2",array($agecategories[$projectcategories_id]['mingrade'],$agecategories[$projectcategories_id]['maxgrade'])).")";
  echo "</td></tr>";
  echo "<tr><td>".i18n("Division").": </td><td>";
- $q=mysql_query("SELECT * FROM projectdivisions ORDER BY division");
+ $q=mysql_query("SELECT * FROM projectdivisions WHERE year='".$config['FAIRYEAR']."' ORDER BY division");
  echo "<select name=\"projectdivisions_id\">";
  echo "<option value=\"\">".i18n("Select a division")."</option>\n";
  while($r=mysql_fetch_object($q))