diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-02-22 10:26:55 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-02-22 10:26:55 +0000 |
commit | 9cb5cb2a00640129fe459915f8a58113317db5fa (patch) | |
tree | e4f0ecea76442ba004e493dc9ab9c643f4122b64 /perl-install/install_steps_interactive.pm | |
parent | c2c4191802c0f819109d9210d6e3ab8d99dea25e (diff) | |
download | drakx-9cb5cb2a00640129fe459915f8a58113317db5fa.tar drakx-9cb5cb2a00640129fe459915f8a58113317db5fa.tar.gz drakx-9cb5cb2a00640129fe459915f8a58113317db5fa.tar.bz2 drakx-9cb5cb2a00640129fe459915f8a58113317db5fa.tar.xz drakx-9cb5cb2a00640129fe459915f8a58113317db5fa.zip |
no_comment
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 261fc0d47..2de1d75ce 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -546,7 +546,7 @@ sub timeConfig { require timezone; $o->{timezone}{timezone} ||= timezone::bestTimezone(lang::lang2text($o->{lang})); - $o->{timezone}{timezone} = $o->ask_from_list('', _("Which is your timezone?"), [ timezone::getTimeZones($::g_auto_install ? '' : $o->{prefix}) ], $o->{timezone}{timezone}); + $o->{timezone}{timezone} = $o->ask_from_treelist('', _("Which is your timezone?"), '/', [ timezone::getTimeZones($::g_auto_install ? '' : $o->{prefix}) ], $o->{timezone}{timezone}); $o->{timezone}{UTC} = $o->ask_yesorno('', _("Is your hardware clock set to GMT?"), $o->{timezone}{UTC}) if $::expert || $clicked; install_steps::timeConfig($o,$f); } |