diff options
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 765b69f43..7e791dd2b 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1068,15 +1068,15 @@ sub summary { }, }; - $::o->{miscellaneous} ||= {}; + $o->{miscellaneous} ||= {}; push @l, { group => N("Network & Internet"), label => N("Proxies"), - val => sub { $::o->{miscellaneous}{http_proxy} || $::o->{miscellaneous}{ftp_proxy} ? N("configured") : N("not configured") }, + val => sub { $o->{miscellaneous}{http_proxy} || $o->{miscellaneous}{ftp_proxy} ? N("configured") : N("not configured") }, clicked => sub { require network::network; - network::network::miscellaneous_choose($o, $::o->{miscellaneous}); - network::network::proxy_configure($::o->{miscellaneous}) if !$::testing; + network::network::miscellaneous_choose($o, $o->{miscellaneous}); + network::network::proxy_configure($o->{miscellaneous}) if !$::testing; }, }; |