From f9d902634f9fd8e2d4649a107a03cad9c071d6cd Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 23 Jun 2005 06:27:47 +0000 Subject: cleanup (old titi commit) --- perl-install/install_steps_interactive.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'perl-install/install_steps_interactive.pm') 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; }, }; -- cgit v1.2.1