- 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]; $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++) {