forked from science-ation/science-ation
- Fix bug 0000128, the order of the languages in the judging team names
This commit is contained in:
parent
57f349b1b1
commit
c9fb9f1084
@ -571,13 +571,11 @@ for($x=1;$x<count($jteam); $x++) {
|
||||
$t =& $jteam[$x];
|
||||
$max_jteam_num++;
|
||||
print("Judging Team $max_jteam_num: cost={$a->bucket_cost[$x]} ");
|
||||
print("langs=(");
|
||||
$langstr="";
|
||||
for($y=0; $y<count($t['langs']); $y++) {
|
||||
if($y != 0) $langstr .= " ";
|
||||
$langstr .= $t['langs'][$y];
|
||||
}
|
||||
print("$langstr)");
|
||||
$lang_array = $t['langs'];
|
||||
asort($lang_array);
|
||||
$langstr = implode(' ', $lang_array);
|
||||
|
||||
print("langs=($langstr)");
|
||||
print("cats=(");
|
||||
$catstr="";
|
||||
for($y=0; $y<count($t['cats']); $y++) {
|
||||
|
Loading…
Reference in New Issue
Block a user