- Fix bug 0000128, the order of the languages in the judging team names

This commit is contained in:
dave 2007-12-13 19:21:41 +00:00
parent 57f349b1b1
commit c9fb9f1084

View File

@ -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++) {