diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-23 06:27:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-23 06:27:47 +0000 |
commit | f9d902634f9fd8e2d4649a107a03cad9c071d6cd (patch) | |
tree | d7b4d2590848e7892bc4140de2adb49ded6feefa /perl-install/install_steps_interactive.pm | |
parent | 48125c762598e6b8d2a9329356d47781515ff72e (diff) | |
download | drakx-f9d902634f9fd8e2d4649a107a03cad9c071d6cd.tar drakx-f9d902634f9fd8e2d4649a107a03cad9c071d6cd.tar.gz drakx-f9d902634f9fd8e2d4649a107a03cad9c071d6cd.tar.bz2 drakx-f9d902634f9fd8e2d4649a107a03cad9c071d6cd.tar.xz drakx-f9d902634f9fd8e2d4649a107a03cad9c071d6cd.zip |
cleanup (old titi commit)
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; }, }; |