summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-02-28 10:26:48 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-02-28 10:26:48 +0000
commita5110de51a1f80d81552836e26fe6951587c2153 (patch)
tree6f618e6ca6a1bfc0953bca45ad3a971ed6c53a44
parent54c1543b2101be7179c2854edea1f09bd90f93c2 (diff)
downloaddrakx-a5110de51a1f80d81552836e26fe6951587c2153.tar
drakx-a5110de51a1f80d81552836e26fe6951587c2153.tar.gz
drakx-a5110de51a1f80d81552836e26fe6951587c2153.tar.bz2
drakx-a5110de51a1f80d81552836e26fe6951587c2153.tar.xz
drakx-a5110de51a1f80d81552836e26fe6951587c2153.zip
ensure the $::expert flag in netconnect doesn't propagate to the rest of the
install
-rw-r--r--perl-install/install_steps_interactive.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index e32811256..b644fcb1a 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -989,6 +989,7 @@ sub summary {
label => N("Network"),
val => sub { $o->{netcnx}{type} },
clicked => sub {
+ local $::expert = $::expert;
require network::netconnect;
network::netconnect::main($o->{prefix}, $o->{netcnx} ||= {}, $o->{netc}, $o->{mouse}, $o, $o->{intf}, 0, 0, 1);
},