summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-06-23 06:27:47 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-06-23 06:27:47 +0000
commitf9d902634f9fd8e2d4649a107a03cad9c071d6cd (patch)
treed7b4d2590848e7892bc4140de2adb49ded6feefa /perl-install/install_steps_interactive.pm
parent48125c762598e6b8d2a9329356d47781515ff72e (diff)
downloaddrakx-backup-do-not-use-f9d902634f9fd8e2d4649a107a03cad9c071d6cd.tar
drakx-backup-do-not-use-f9d902634f9fd8e2d4649a107a03cad9c071d6cd.tar.gz
drakx-backup-do-not-use-f9d902634f9fd8e2d4649a107a03cad9c071d6cd.tar.bz2
drakx-backup-do-not-use-f9d902634f9fd8e2d4649a107a03cad9c071d6cd.tar.xz
drakx-backup-do-not-use-f9d902634f9fd8e2d4649a107a03cad9c071d6cd.zip
cleanup (old titi commit)
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm8
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;
},
};