From f89b130fd30a8bfd829675558472ae80bb2d538a Mon Sep 17 00:00:00 2001 From: james Date: Wed, 9 Mar 2005 23:29:00 +0000 Subject: [PATCH] only show the judges in the list if their firstname and lastname is set this is a bit of a workaround, there should be a "complete" flag somewhere that is set/unset as the judges go through their profile and this should only query those that are complete --- admin/judges_teams.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/admin/judges_teams.php b/admin/judges_teams.php index 1eba4bf..3a37b88 100644 --- a/admin/judges_teams.php +++ b/admin/judges_teams.php @@ -152,7 +152,8 @@ function delbuttonclicked(team_id,team_num,judge) while($r=mysql_fetch_object($q)) { - echo "\n"; + if($r->firstname && $r->lastname) + echo "\n"; } echo "";