From 24c32fe3d8141ac056c6350ae148cfc30ddadfea Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Mon, 4 Feb 2008 19:29:26 +0000 Subject: Bug 415155: Remove $cgi from the list of arguments when calling Bugzilla::Flag subroutines - Patch by Frédéric Buclin a=LpSolit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- process_bug.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'process_bug.cgi') diff --git a/process_bug.cgi b/process_bug.cgi index 7c5902e73..0e081b407 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -162,7 +162,7 @@ if (defined $cgi->param('dontchange')) { # Validate flags in all cases. validate() should not detect any # reference to flags if $cgi->param('id') is undefined. -Bugzilla::Flag::validate($cgi, $cgi->param('id')); +Bugzilla::Flag::validate($cgi->param('id')); ###################################################################### # End Data/Security Validation @@ -550,7 +550,7 @@ foreach my $bug (@bug_objects) { } # Set and update flags. - Bugzilla::Flag->process($bug, undef, $timestamp, $cgi, $vars); + Bugzilla::Flag->process($bug, undef, $timestamp, $vars); $dbh->bz_commit_transaction(); -- cgit v1.2.3-24-g4f1b