Only print the award name for SA only judges, so it makes sense visually.

This commit is contained in:
dave 2009-03-29 05:56:29 +00:00
parent 29d2f5b333
commit 2e2b6910dc

View File

@ -502,7 +502,9 @@ foreach($judges as &$j) {
$j['special_awards'] = array();
while($r = mysql_fetch_object($q)) {
TRACE(" {$r->name}\n");
if($j['special_award_only'] == 'yes') {
TRACE(" {$r->name}\n");
}
/* Add them to the SA judge list (modify the actual list, not
* $j, which is a copy */
$j['special_awards'][] = $r->id;