From: justdave%syndicomm.com <> Date: Sat, 27 Mar 2004 12:35:37 +0000 (+0000) Subject: Bug 235265: Getting rid of some unwanted form value dumps. X-Git-Tag: bugzilla-2.18rc1~135 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38bb9a560a8478f1aa4bae331fa67b691079c797;p=thirdparty%2Fbugzilla.git Bug 235265: Getting rid of some unwanted form value dumps. Patch by Jouni Heikniemi r= justdave, kiko; a= justdave --- diff --git a/editcomponents.cgi b/editcomponents.cgi index 5ed7a28d70..f570366652 100755 --- a/editcomponents.cgi +++ b/editcomponents.cgi @@ -856,6 +856,3 @@ if ($action eq 'update') { PutHeader("Error"); print "I don't have a clue what you want.
\n"; -foreach ( sort keys %::FORM) { - print "$_: $::FORM{$_}
\n"; -} diff --git a/editgroups.cgi b/editgroups.cgi index 4f97972b30..d3515b019f 100755 --- a/editgroups.cgi +++ b/editgroups.cgi @@ -671,10 +671,6 @@ if (($action eq 'remove_all_regexp') || ($action eq 'remove_all')) { PutHeader("Error"); print "I don't have a clue what you want.
\n"; -foreach ( sort keys %::FORM) { - print "$_: $::FORM{$_}
\n"; -} - PutTrailer("Try the group list"); # confirm if the user wants to remove the explicit users diff --git a/editmilestones.cgi b/editmilestones.cgi index e707cf46d7..e5c8844bd2 100755 --- a/editmilestones.cgi +++ b/editmilestones.cgi @@ -569,6 +569,3 @@ if ($action eq 'update') { PutHeader("Error"); print "I don't have a clue what you want.
\n"; -foreach ( sort keys %::FORM) { - print "$_: $::FORM{$_}
\n"; -} diff --git a/editproducts.cgi b/editproducts.cgi index 051fdb86c5..b3ab7e1a2a 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -1510,7 +1510,3 @@ if ($action eq 'editgroupcontrols') { PutHeader("Error"); print "I don't have a clue what you want.
\n"; - -foreach ( sort keys %::FORM) { - print "$_: $::FORM{$_}
\n"; -} diff --git a/editusers.cgi b/editusers.cgi index 3db5aef863..36135a1e2c 100755 --- a/editusers.cgi +++ b/editusers.cgi @@ -884,7 +884,3 @@ if ($action eq 'update') { PutHeader("Error"); print "I don't have a clue what you want.
\n"; - -foreach ( sort keys %::FORM) { - print "$_: $::FORM{$_}
\n"; -} diff --git a/editversions.cgi b/editversions.cgi index 527f42aafe..0b5e6a23ac 100755 --- a/editversions.cgi +++ b/editversions.cgi @@ -543,7 +543,3 @@ if ($action eq 'update') { PutHeader("Error"); print "I don't have a clue what you want.
\n"; - -foreach ( sort keys %::FORM) { - print "$_: $::FORM{$_}
\n"; -}