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

@@ -20,7 +20,9 @@ $Source$
* main.php, themes.php, libraries/common.lib.php,
libraries/defines.lib.php, libraries/select_theme.lib.php,
themes/darkblue_orange/info.inc.php, themes/original/info.inc.php:
Impleneted versioning and naming for themes (RFEs #991642 and #991645).
Implemeted versioning and naming for themes (RFEs #991642 and #991645).
* left.php: Use always natsort and not natcasesort in one case, it caused
inconsistency (bug #1008120).
2004-08-11 Michal Čihař <michal@cihar.com>
* tbl_replace.php: Do not empty protected values (bug #1006812).

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