- Remove a debugging line.

This commit is contained in:
dave 2006-08-02 07:44:31 +00:00
parent 5438821b1c
commit c79f16837b

View File

@ -386,7 +386,7 @@ while($r=mysql_fetch_object($q))
"judges_id='$r->id' ".
" AND year='".$config['FAIRYEAR']."'");
if(mysql_num_rows($q2) != 0) {
TRACE("Judge [{$r->firstname} {$r->lastname}] is already on a judging team, skipping.\n");
TRACE(" {$r->firstname} {$r->lastname} is already on a judging team, skipping.\n");
continue;
}
@ -511,10 +511,6 @@ for($x=1;$x<count($jteam); $x++) {
$team_id=mysql_insert_id();
$t['team_id'] = $team_id;
if($team_id == 0) {
exit();
}
$ids = $a->bucket[$x];
for($y=0; $y<count($ids); $y++) {
pr_judge($t, $ids[$y]);