From d190d4f0b7dd6d48879a5e9a6f87f1f557971e69 Mon Sep 17 00:00:00 2001 From: james Date: Thu, 27 Mar 2008 08:06:14 +0000 Subject: [PATCH] Display errors if at least one age category and one division arent selected --- admin/award_awards.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/admin/award_awards.php b/admin/award_awards.php index 0417c88b..5b24c377 100644 --- a/admin/award_awards.php +++ b/admin/award_awards.php @@ -291,12 +291,14 @@ echo mysql_error(); echo "".i18n("Criteria")."\n"; echo "".i18n("Description")."\n"; echo "".i18n("Eligibility").""; + echo ""; echo ""; echo ""; echo ""; echo ""; - echo ""; - echo ""; echo ""; + if(count($currentcategories)==0 || count($currentdivisions)==0) + echo ""; echo "
".i18n("Age Categories")."".i18n("Divisions")."
"; + if(count($currentcategories)==0) $class="class=\"error\""; else $class=""; + echo "
"; //now select all the categories so we can list them all $cq=mysql_query("SELECT * FROM projectcategories WHERE year='".$config['FAIRYEAR']."' ORDER BY mingrade"); @@ -311,8 +313,8 @@ echo mysql_error(); echo "id\" />".i18n($cr->category)."
"; } echo "
"; - + if(count($currentdivisions)==0) $class="class=\"error\""; else $class=""; + echo ""; $dq=mysql_query("SELECT * FROM projectdivisions WHERE year='".$config['FAIRYEAR']."' ORDER BY division"); echo mysql_error(); @@ -327,7 +329,10 @@ echo mysql_error(); echo "
".i18n("At least one age category and one division must be selected")."
"; + echo ""; echo "";