diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-17 20:09:35 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-17 20:09:35 +0000 |
commit | 82d6ec2b9ae6e20a36401bf6089f3f734018017d (patch) | |
tree | 87fd9c6cc626b8576da331508e7ab32ea884c687 /perl-install/any.pm | |
parent | 795942284dec72ae707e4613dfc315119798444f (diff) | |
download | drakx-82d6ec2b9ae6e20a36401bf6089f3f734018017d.tar drakx-82d6ec2b9ae6e20a36401bf6089f3f734018017d.tar.gz drakx-82d6ec2b9ae6e20a36401bf6089f3f734018017d.tar.bz2 drakx-82d6ec2b9ae6e20a36401bf6089f3f734018017d.tar.xz drakx-82d6ec2b9ae6e20a36401bf6089f3f734018017d.zip |
(autologin): do not allow empty user name since no autologin can already be achieved by choosing "No"
Diffstat (limited to 'perl-install/any.pm')
-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}; |