summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-09-07 18:56:58 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-09-07 18:56:58 +0000
commitb1f24e0e6c2b5dd8870d1ee89bf7911fe871bfac (patch)
tree41dee19ea5321514d7b99e472ba6706f2cca484a /perl-install/install_steps_interactive.pm
parent0a0d5a1f290319b767e7078c8173f013a5bb842f (diff)
downloaddrakx-backup-do-not-use-b1f24e0e6c2b5dd8870d1ee89bf7911fe871bfac.tar
drakx-backup-do-not-use-b1f24e0e6c2b5dd8870d1ee89bf7911fe871bfac.tar.gz
drakx-backup-do-not-use-b1f24e0e6c2b5dd8870d1ee89bf7911fe871bfac.tar.bz2
drakx-backup-do-not-use-b1f24e0e6c2b5dd8870d1ee89bf7911fe871bfac.tar.xz
drakx-backup-do-not-use-b1f24e0e6c2b5dd8870d1ee89bf7911fe871bfac.zip
no_comment
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 9a98e16bb..f4e91fd2d 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -211,7 +211,8 @@ sub timeConfig {
my ($o, $f) = @_;
$o->{timezone}{GMT} = $o->ask_yesorno('', _("Is your hardware clock set to GMT?"), $o->{timezone}{GMT});
- $o->{timezone}{timezone} = $o->ask_from_list('', _("In which timezone are you"), [ install_any::getTimeZones() ], $o->{timezone}{timezone});
+ $o->{timezone}{timezone} ||=
+ $o->{timezone}{timezone} = $o->ask_from_list('', _("In which timezone are you"), [ timezone::getTimeZones($o->{prefix}) ], $o->{timezone}{timezone});
install_steps::timeConfig($o,$f);
}