diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-03 04:02:56 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-03 04:02:56 +0000 |
commit | cf8f2d01244a93ffd433d1824e9728ef3b0329b0 (patch) | |
tree | 6b8d10bf028633236b74534cb29eb33e42edaed3 /perl-install/install_steps_interactive.pm | |
parent | fcefa9389a9f765b757f1308434f3c0c5e442b21 (diff) | |
download | drakx-cf8f2d01244a93ffd433d1824e9728ef3b0329b0.tar drakx-cf8f2d01244a93ffd433d1824e9728ef3b0329b0.tar.gz drakx-cf8f2d01244a93ffd433d1824e9728ef3b0329b0.tar.bz2 drakx-cf8f2d01244a93ffd433d1824e9728ef3b0329b0.tar.xz drakx-cf8f2d01244a93ffd433d1824e9728ef3b0329b0.zip |
don't use $in->{locale} as being $o->{locale} during install, it's much better to pass $o->{locale}
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-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 460e489f8..63f2df1a1 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -50,7 +50,7 @@ sub kill_action { sub selectLanguage { my ($o) = @_; - $o->{locale}{lang} = any::selectLanguage($o, $o->{locale}{lang}, $o->{locale}{langs} ||= {}); + any::selectLanguage_install($o, $o->{locale}); install_steps::selectLanguage($o); if ($o->isa('interactive::gtk')) { |