summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdhcp_wizard/Dhcp.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/dhcp_wizard/Dhcp.pm b/dhcp_wizard/Dhcp.pm
index 63e5b09a..34688f80 100755
--- a/dhcp_wizard/Dhcp.pm
+++ b/dhcp_wizard/Dhcp.pm
@@ -113,11 +113,11 @@ $o->{pages} = {
$o->{var}{pxeornot} = $o->{var}{pxe} ? N("enabled") : N("disabled");
},
data => [
- { label => N("Lowest IP address:"), fixed_val => \$o->{var}{ip1} },
- { label => N("Highest IP address:"), fixed_val => \$o->{var}{ip2} },
- { label => N("Gateway IP address:"), fixed_val => \$o->{var}{gateway} },
- { label => N("Interface:"), fixed_val => \$o->{var}{interface} },
- { label => N("Enable PXE:"), fixed_val => \$o->{var}{pxeornot} },
+ { label => N("Lowest IP address:"), val_ref => \$o->{var}{ip1} },
+ { label => N("Highest IP address:"), val_ref => \$o->{var}{ip2} },
+ { label => N("Gateway IP address:"), val_ref => \$o->{var}{gateway} },
+ { label => N("Interface:"), val_ref => \$o->{var}{interface} },
+ { label => N("Enable PXE:"), val_ref => \$o->{var}{pxeornot} },
],
post => \&do_it,
next => 'end',