summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/network/tools.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/network/tools.pm b/perl-install/network/tools.pm
index 3d75a3073..17fb282f2 100644
--- a/perl-install/network/tools.pm
+++ b/perl-install/network/tools.pm
@@ -110,6 +110,7 @@ sub read_providers_backend { my ($file) = @_; map { /(.*?)=>/ } catMaybeCompress
sub ask_info2 {
my ($cnx, $netc) = @_;
+
$::isInstall and $in->set_help('configureNetworkDNS');
$in->ask_from(N("Connection Configuration"),
N("Please fill or check the field below"),
@@ -128,7 +129,7 @@ sub ask_info2 {
if__($cnx->{dialing_mode}, { label => N("Dialing mode"), val => \$cnx->{dialing_mode},list => ["auto", "manual"] }),
if__($cnx->{speed}, { label => N("Connection speed"), val => \$cnx->{speed}, list => ["64 Kb/s", "128 Kb/s"] }),
if__($cnx->{huptimeout}, { label => N("Connection timeout (in sec)"), val => \$cnx->{huptimeout} }),
- if__($cnx->{login}, { label => N("Account Login (user name)"), val => \$cnx->{login} }),
+ { label => N("Account Login (user name)"), val => \$cnx->{login} },
if__($cnx->{passwd}, { label => N("Account Password"), val => \$cnx->{passwd}, hidden => 1 }),
]
) or return;