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];
|
$t =& $jteam[$x];
|
||||||
$max_jteam_num++;
|
$max_jteam_num++;
|
||||||
print("Judging Team $max_jteam_num: cost={$a->bucket_cost[$x]} ");
|
print("Judging Team $max_jteam_num: cost={$a->bucket_cost[$x]} ");
|
||||||
print("langs=(");
|
$lang_array = $t['langs'];
|
||||||
$langstr="";
|
asort($lang_array);
|
||||||
for($y=0; $y<count($t['langs']); $y++) {
|
$langstr = implode(' ', $lang_array);
|
||||||
if($y != 0) $langstr .= " ";
|
|
||||||
$langstr .= $t['langs'][$y];
|
print("langs=($langstr)");
|
||||||
}
|
|
||||||
print("$langstr)");
|
|
||||||
print("cats=(");
|
print("cats=(");
|
||||||
$catstr="";
|
$catstr="";
|
||||||
for($y=0; $y<count($t['cats']); $y++) {
|
for($y=0; $y<count($t['cats']); $y++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user