Hopefully fixed sorting by team name.

This commit is contained in:
Ben Anderman 2010-04-27 23:41:49 +00:00
parent 2cfab3b06d
commit ee9817f7b7

View file

@ -17,6 +17,7 @@ function cmp_translated($a, $b){
}
function cmp_alpha($a, $b){
global $langs;
return strcmp($langs[$a],$langs[$b]);
}