No sql table, the group table calculation (A-D) was wrong. Take a look into your tables and you will see that for example switzerland before czech is display (thats wrong).
If you have translated your em2008.php file, you can change it manuell with this:
Find:
PHP Code:
$sql = "SELECT t.name, t.shortname, t.groupname, gs.match_played, gs.won,
gs.drawn, gs.lost, gs.goal_plus, gs.goal_minus, gs.goal_diff, gs.points
FROM " . TABLE_PREFIX . "rth_em08_teams AS t
LEFT JOIN " . TABLE_PREFIX . "rth_em08_group_scores AS gs ON ( t.team_id = gs.team_id )
ORDER BY t.groupname, gs.points DESC, gs.goal_diff DESC, gs.goal_plus DESC";
Replace with:
PHP Code:
$sql = "SELECT t.name, t.shortname, t.groupname, gs.match_played, gs.won,
gs.drawn, gs.lost, gs.goal_plus, gs.goal_minus, gs.goal_diff, gs.points
FROM " . TABLE_PREFIX . "rth_em08_teams AS t
LEFT JOIN " . TABLE_PREFIX . "rth_em08_group_scores AS gs ON ( t.team_id = gs.team_id )
ORDER BY t.groupname, gs.points DESC, gs.goal_plus DESC, gs.goal_minus ASC";
That?s all. Only a little sql query bug.
best regards
Pander23