diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-03-28 18:10:11 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-03-28 18:10:11 +0000 |
commit | d1574a56ec08ec025bc78681fcf03e4e17839484 (patch) | |
tree | 1fa48851e27cc23c6b0424147636e16e64006209 /perl-install | |
parent | 221d58ec842f70419060c898b9b3025b7109ea3b (diff) | |
download | drakx-backup-do-not-use-d1574a56ec08ec025bc78681fcf03e4e17839484.tar drakx-backup-do-not-use-d1574a56ec08ec025bc78681fcf03e4e17839484.tar.gz drakx-backup-do-not-use-d1574a56ec08ec025bc78681fcf03e4e17839484.tar.bz2 drakx-backup-do-not-use-d1574a56ec08ec025bc78681fcf03e4e17839484.tar.xz drakx-backup-do-not-use-d1574a56ec08ec025bc78681fcf03e4e17839484.zip |
use documented format of TZ variable
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 37fc78067..5422e3065 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -1369,7 +1369,7 @@ sub configure_time_more { require POSIX; use POSIX qw(strftime); my $time_format = "%H:%M:%S"; - local $ENV{TZ} = $timezone->{timezone}; + local $ENV{TZ} = ':' . $timezone->{timezone}; $in->ask_from_({ interactive_help_id => 'configureTimezoneGMT', title => N("Date, Clock & Time Zone Settings"), |