summaryrefslogtreecommitdiffstats
path: root/post_bug.cgi
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2008-02-04 20:29:26 +0100
committerlpsolit%gmail.com <>2008-02-04 20:29:26 +0100
commit24c32fe3d8141ac056c6350ae148cfc30ddadfea (patch)
tree9b887cc8d182260e2a25b541bfd7b4fed8da1c00 /post_bug.cgi
parenta9053d2b041eb08f939711005c53b66f9610f9bc (diff)
downloadbugzilla-24c32fe3d8141ac056c6350ae148cfc30ddadfea.tar.gz
bugzilla-24c32fe3d8141ac056c6350ae148cfc30ddadfea.tar.xz
Bug 415155: Remove $cgi from the list of arguments when calling Bugzilla::Flag subroutines - Patch by Frédéric Buclin <LpSolit@gmail.com> a=LpSolit
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-xpost_bug.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/post_bug.cgi b/post_bug.cgi
index 89edca2f4..988a1dedf 100755
--- a/post_bug.cgi
+++ b/post_bug.cgi
@@ -229,8 +229,8 @@ if (defined($cgi->upload('data')) || $cgi->param('attachurl')) {
my $error_mode_cache = Bugzilla->error_mode;
Bugzilla->error_mode(ERROR_MODE_DIE);
eval {
- Bugzilla::Flag::validate($cgi, $id, undef, SKIP_REQUESTEE_ON_ERROR);
- Bugzilla::Flag->process($bug, undef, $timestamp, $cgi, $vars);
+ Bugzilla::Flag::validate($id, undef, SKIP_REQUESTEE_ON_ERROR);
+ Bugzilla::Flag->process($bug, undef, $timestamp, $vars);
};
Bugzilla->error_mode($error_mode_cache);
if ($@) {