diff options
author | Frederic Lepied <flepied@mandriva.com> | 2003-02-28 08:38:53 +0000 |
---|---|---|
committer | Frederic Lepied <flepied@mandriva.com> | 2003-02-28 08:38:53 +0000 |
commit | 07728179b4f3294a82f54a6b360cb5c7f1e056fe (patch) | |
tree | 44220dcee8fc41337172732b6cea8cf3277a8de3 /perl-install/network | |
parent | a3e23e03ca118f4e5dcebeeba40d5e54a65264ba (diff) | |
download | drakx-07728179b4f3294a82f54a6b360cb5c7f1e056fe.tar drakx-07728179b4f3294a82f54a6b360cb5c7f1e056fe.tar.gz drakx-07728179b4f3294a82f54a6b360cb5c7f1e056fe.tar.bz2 drakx-07728179b4f3294a82f54a6b360cb5c7f1e056fe.tar.xz drakx-07728179b4f3294a82f54a6b360cb5c7f1e056fe.zip |
allow to switch in expert mode during install.
Diffstat (limited to 'perl-install/network')
-rw-r--r-- | perl-install/network/netconnect.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 698ff49d5..ea4142236 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -162,7 +162,7 @@ If you don't want to use the auto detection, deselect the checkbox. [ if_(@profiles > 1, { label => N("Choose the profile to configure"), val => \$netcnx->{PROFILE}, list => \@profiles }), { label => N("Use auto detection"), val => \$netc->{autodetection}, type => 'bool' }, - if_($::isStandalone, { label => N("Expert Mode"), val => \$::expert, type => 'bool' }), + { label => N("Expert Mode"), val => \$::expert, type => 'bool' }, ] ) or goto step_5 }; $in->exit(0) if $@ =~ /wizcancel/; undef $::Wizard_no_previous; |