diff options
author | Antoine Ginies <aginies@mandriva.com> | 2006-06-20 20:54:31 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2006-06-20 20:54:31 +0000 |
commit | ef83c3384527da74e78aa47c017c96dd34a629b9 (patch) | |
tree | e94e7cbe89ae84a1f07939b43939bf641607bd46 /time_wizard | |
parent | fa60acb6d2feb2b86924afff15d1124c01a70f7d (diff) | |
download | drakwizard-ef83c3384527da74e78aa47c017c96dd34a629b9.tar drakwizard-ef83c3384527da74e78aa47c017c96dd34a629b9.tar.gz drakwizard-ef83c3384527da74e78aa47c017c96dd34a629b9.tar.bz2 drakwizard-ef83c3384527da74e78aa47c017c96dd34a629b9.tar.xz drakwizard-ef83c3384527da74e78aa47c017c96dd34a629b9.zip |
fix fixed_val and fixed_list
Diffstat (limited to 'time_wizard')
-rw-r--r-- | time_wizard/Ntp.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/time_wizard/Ntp.pm b/time_wizard/Ntp.pm index 23d8929d..290a7ff9 100644 --- a/time_wizard/Ntp.pm +++ b/time_wizard/Ntp.pm @@ -108,7 +108,7 @@ $o->{pages} = { @country = ref $country{$o->{var}{wiz_region}} ? @{$country{$o->{var}{wiz_region}}} : () }, data => [ - { label => N("Choose a city:"), val => \$o->{var}{wiz_country}, fixed_list => \@country }, + { label => N("Choose a city:"), val => \$o->{var}{wiz_country}, list_ref => \@country }, ], next => 'test_server' }, @@ -119,9 +119,9 @@ $o->{pages} = { }, post => \&test, data => [ - { label => N("Primary time server:"), fixed_val => \$o->{var}{varserver1} }, - { label => N("Secondary time server:"), fixed_val => \$o->{var}{varserver2} }, - { label => N("Time zone:"), fixed_val => \$o->{var}{wiz_timezone} }, + { label => N("Primary time server:"), val_ref => \$o->{var}{varserver1} }, + { label => N("Secondary time server:"), val_ref => \$o->{var}{varserver2} }, + { label => N("Time zone:"), val_ref => \$o->{var}{wiz_timezone} }, ], next => 'end' }, |