diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-07-30 15:30:10 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-07-30 15:30:10 +0000 |
commit | bb11683e1cc5ffe127356ba43e788e8aff012f70 (patch) | |
tree | 550f224cbd1a57852fc26f398e372727a678fb0d | |
parent | c7801904b0dbb2017d1d88cebc3060f75d7a2f10 (diff) | |
download | drakx-bb11683e1cc5ffe127356ba43e788e8aff012f70.tar drakx-bb11683e1cc5ffe127356ba43e788e8aff012f70.tar.gz drakx-bb11683e1cc5ffe127356ba43e788e8aff012f70.tar.bz2 drakx-bb11683e1cc5ffe127356ba43e788e8aff012f70.tar.xz drakx-bb11683e1cc5ffe127356ba43e788e8aff012f70.zip |
fix typo
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 3c9107c84..3ab27a259 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -833,7 +833,7 @@ sub configureTimezone { my $servers = timezone::ntp_servers(); $o->{timezone}{ntp} ||= 'pool.ntp.org'; - $in->ask_from_({}, + $o->ask_from_({}, [ { label => N("NTP Server"), val => \$o->{timezone}{ntp}, list => [ keys %$servers ], not_edit => 0, format => sub { $servers->{$_[0]} ? "$servers->{$_[0]} ($_[0])" : $_[0] } } ] ) or goto &configureTimezone; |