diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 8d61d685d..5ecf79f88 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -810,7 +810,7 @@ sub autologin { Do you want to use this feature?"), ok => _("Yes"), cancel => _("No") }, - [ { label => _("Choose the default user:"), val => \$o->{autologin}, list => [ '', @users ] }, + [ { label => _("Choose the default user:"), val => \$o->{autologin}, list => \@users }, { label => _("Choose the window manager to run:"), val => \$o->{desktop}, list => \@wm } ] ) or delete $o->{autologin}; |