diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-04-21 00:20:42 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-04-21 00:20:42 +0000 |
commit | d62526ddc96a973aff0e14ba7f3b4c5db857c220 (patch) | |
tree | 3c15a147fb3dd50eb6e367ecd4dc1b7dc1cfc860 /perl-install/install/any.pm | |
parent | 6487ecdc95b68ed971962480c5a89bacf534b78d (diff) | |
download | drakx-d62526ddc96a973aff0e14ba7f3b4c5db857c220.tar drakx-d62526ddc96a973aff0e14ba7f3b4c5db857c220.tar.gz drakx-d62526ddc96a973aff0e14ba7f3b4c5db857c220.tar.bz2 drakx-d62526ddc96a973aff0e14ba7f3b4c5db857c220.tar.xz drakx-d62526ddc96a973aff0e14ba7f3b4c5db857c220.zip |
convert from ask_from() to ask_from_()
(needed for next commit)
Diffstat (limited to 'perl-install/install/any.pm')
-rw-r--r-- | perl-install/install/any.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index fe05557f5..918a89103 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -125,8 +125,8 @@ Do you have a supplementary installation medium to configure?", 'nfs' => N("Network (NFS)"), ); - $o->ask_from( - '', $msg, + $o->ask_from_({ messages => $msg, + }, [ { val => \my $suppl, list => [ map { $_->[0] } group_by2(@l) ], |