diff --git a/ChangeLog b/ChangeLog index c37ec221c..166880e22 100755 --- a/ChangeLog +++ b/ChangeLog @@ -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ř * tbl_replace.php: Do not empty protected values (bug #1006812). diff --git a/left.php b/left.php index 89b13a3b6..6f5b5fc78 100644 --- a/left.php +++ b/left.php @@ -543,7 +543,7 @@ if ($num_dbs > 1) { } if ($cfg['NaturalOrder']) { - natcasesort($table_array); + natsort($table_array); } foreach ($table_array as $table => $table_sortkey) {