X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Foptions_display.php;h=1ddaeb0cc58253c0e62b0ef079dac15c114d5bcd;hb=dbcc5ca308317d7444f1322e661a65f269a31ec3;hp=2e03483ef3cb563331389d4920e4b8caeb592157;hpb=e697b6cc39af08f80d3ee3743c9d4088791af634;p=squirrelmail.git diff --git a/src/options_display.php b/src/options_display.php index 2e03483e..1ddaeb0c 100644 --- a/src/options_display.php +++ b/src/options_display.php @@ -1,15 +1,15 @@ $theme_attributes) { - $theme_values[$theme_attributes['PATH']] = $theme_attributes['NAME']; + $theme_values[$theme_attributes['NAME']] = $theme_attributes['PATH']; } + ksort($theme_values); + $theme_values = array_flip($theme_values); $optvals[SMOPT_GRP_GENERAL][] = array( 'name' => 'chosen_theme', 'caption' => _("Theme"), @@ -46,12 +48,14 @@ function load_optpage_data_display() { 'save' => 'save_option_theme' ); + $language = (!isset($language) || ($language == '') ? 'en' : $language); $language_values = array(); foreach ($languages as $lang_key => $lang_attributes) { if (isset($lang_attributes['NAME'])) { $language_values[$lang_key] = $lang_attributes['NAME']; } } + asort($language_values); $optvals[SMOPT_GRP_GENERAL][] = array( 'name' => 'language', 'caption' => _("Language"),