summaryrefslogtreecommitdiffstats
path: root/perl-install/modparm.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-08-09 11:06:35 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-08-09 11:06:35 +0000
commit6364eb309cf7e807752fca228e6a2879cb224b0b (patch)
tree2d0728be33f500e493798dd2e2198b68d0af0081 /perl-install/modparm.pm
parent9c49e6bfb611d4a73815cfa1a6e6821cd48a9ae2 (diff)
downloaddrakx-6364eb309cf7e807752fca228e6a2879cb224b0b.tar
drakx-6364eb309cf7e807752fca228e6a2879cb224b0b.tar.gz
drakx-6364eb309cf7e807752fca228e6a2879cb224b0b.tar.bz2
drakx-6364eb309cf7e807752fca228e6a2879cb224b0b.tar.xz
drakx-6364eb309cf7e807752fca228e6a2879cb224b0b.zip
- fix module parameter dialog box handling
- enable the cancel on load_module__ask_options
Diffstat (limited to 'perl-install/modparm.pm')
-rw-r--r--perl-install/modparm.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/modparm.pm b/perl-install/modparm.pm
index 1e9524572..68ded7851 100644
--- a/perl-install/modparm.pm
+++ b/perl-install/modparm.pm
@@ -52,8 +52,8 @@ sub parameters {
($is_a_number ? _("%d comma separated numbers", $min) : _("%d comma separated strings", $min)) :
$min == 1 ?
($is_a_number ? _("comma separated numbers") : _("comma separated strings")) :
- ''; #- to weird and buggy, do not display it
- push @parameters, [ $format ? "$name ($format)" : $name, $description, $min, $max, $is_a_number ];
+ ''; #- too weird and buggy, do not display it
+ push @parameters, [ $name, $format, $description, $min, $max, $is_a_number ];
}
@parameters;
}