Added language tags to the available judges in the team member editing form.

This commit is contained in:
jacob 2010-04-06 16:29:21 +00:00
parent 00e1743aed
commit 2afa6a5ec8

View File

@ -273,7 +273,7 @@ function switchjudgeinfo()
foreach($jlist as $jid) {
$u = &$judgelist[$jid];
if($u['firstname'] && $u['lastname'])
echo "<option value=\"$jid\">{$u['firstname']} {$u['lastname']}</option>\n";
echo "<option value=\"$jid\">{$u['firstname']} {$u['lastname']} (" . implode(' ', $u['languages']) . ")</option>\n";
}
unset($u);