summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive/http.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-11-05 12:26:59 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-11-05 12:26:59 +0000
commit96279a0b9750c1d757b48c40cd1f17b5a60ea014 (patch)
treecd560f727a90ded832cfd5480f248848006f73d0 /perl-install/interactive/http.pm
parent3812fd80c231dba41da389d575547492c994552c (diff)
downloaddrakx-backup-do-not-use-96279a0b9750c1d757b48c40cd1f17b5a60ea014.tar
drakx-backup-do-not-use-96279a0b9750c1d757b48c40cd1f17b5a60ea014.tar.gz
drakx-backup-do-not-use-96279a0b9750c1d757b48c40cd1f17b5a60ea014.tar.bz2
drakx-backup-do-not-use-96279a0b9750c1d757b48c40cd1f17b5a60ea014.tar.xz
drakx-backup-do-not-use-96279a0b9750c1d757b48c40cd1f17b5a60ea014.zip
use each_index instead of map_index when the return value is not used
Diffstat (limited to 'perl-install/interactive/http.pm')
-rw-r--r--perl-install/interactive/http.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/interactive/http.pm b/perl-install/interactive/http.pm
index 42e116380..cc48ee19a 100644
--- a/perl-install/interactive/http.pm
+++ b/perl-install/interactive/http.pm
@@ -68,7 +68,7 @@ sub ask_fromW {
print "<table>\n";
- map_index {
+ each_index {
my $e = $_;
print "<tr><td>$e->{label}</td><td>\n";
@@ -120,7 +120,7 @@ sub ask_fromW {
print $q->h1(_("Error")), $q->p("Sorry, you can't go back");
goto redisplay;
}
- map_index {
+ each_index {
my $e = $_;
my $v = $q->param("w$::i");
if ($e->{type} eq 'bool') {