Use always natsort and not natcasesort in one case, it caused inconsistency (bug #1008120).

This commit is contained in:
Michal Čihař
2004-08-12 18:19:56 +00:00
parent 37307b9905
commit c4df15c991
2 changed files with 4 additions and 2 deletions

View File

@@ -543,7 +543,7 @@ if ($num_dbs > 1) {
}
if ($cfg['NaturalOrder']) {
natcasesort($table_array);
natsort($table_array);
}
foreach ($table_array as $table => $table_sortkey) {