diff options
Diffstat (limited to 'perl-install/standalone')
-rw-r--r-- | perl-install/standalone/drakedm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakedm b/perl-install/standalone/drakedm index 5cfdd1948..06de6b67d 100644 --- a/perl-install/standalone/drakedm +++ b/perl-install/standalone/drakedm @@ -36,7 +36,7 @@ my %dm = ('GNOME' => 'GDM (GNOME Display Manager)', my $dm = 'KDE'; foreach (cat_($cfg_file)) { - $dm = $1 if /^DISPLAYMANAGER=(.*)$/; + $dm = uc($1) if /^DISPLAYMANAGER=(.*)$/; } if (my $new_dm = $in->ask_from_list_(N("Choosing a display manager"), |