diff options
author | Vicent Guardiola <vguardiola@mandriva.com> | 2004-07-20 08:20:01 +0000 |
---|---|---|
committer | Vicent Guardiola <vguardiola@mandriva.com> | 2004-07-20 08:20:01 +0000 |
commit | 64e2928012e7e54e3d05f178828ef60ecd9f460c (patch) | |
tree | 24d4c4beca8fa1ea16eb06a61db3231dfcee543b /perl-install | |
parent | ae5ac56139dd29e9c5138b7e9938b8c1da6eb04a (diff) | |
download | drakx-backup-do-not-use-64e2928012e7e54e3d05f178828ef60ecd9f460c.tar drakx-backup-do-not-use-64e2928012e7e54e3d05f178828ef60ecd9f460c.tar.gz drakx-backup-do-not-use-64e2928012e7e54e3d05f178828ef60ecd9f460c.tar.bz2 drakx-backup-do-not-use-64e2928012e7e54e3d05f178828ef60ecd9f460c.tar.xz drakx-backup-do-not-use-64e2928012e7e54e3d05f178828ef60ecd9f460c.zip |
Add type => 'list' in ask_from
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakauth | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakauth b/perl-install/standalone/drakauth index f091a3000..c48792ad9 100755 --- a/perl-install/standalone/drakauth +++ b/perl-install/standalone/drakauth @@ -23,7 +23,7 @@ my $kind = authentication::to_kind($authentication); main: $in->ask_from('', '', [ - { label => N("Authentication"), val => \$kind, list => [ authentication::kinds() ], format => \&authentication::kind2description }, + { label => N("Authentication"), val => \$kind, type => 'list' , list => [ authentication::kinds() ], format => \&authentication::kind2description }, ]) or $in->exit; authentication::ask_parameters($in, $netc, $authentication, $kind) or goto main; |