diff options
author | lpsolit%gmail.com <> | 2008-02-04 19:23:47 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-02-04 19:23:47 +0100 |
commit | 7f16a9065617dd087712f9daad630967f4695585 (patch) | |
tree | 9576276b38a35105f719efc4d38b841596a0b133 /post_bug.cgi | |
parent | 3648734c240133eb65934f0548f43850d59472e7 (diff) | |
download | bugzilla-7f16a9065617dd087712f9daad630967f4695585.tar.gz bugzilla-7f16a9065617dd087712f9daad630967f4695585.tar.xz |
Bug 413772: Eliminate sqlify_criteria() in Bugzilla::Flag and replace match() there with Bugzilla::Object::match() - Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r/a=LpSolit
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/post_bug.cgi b/post_bug.cgi index 0f23e7d98..89edca2f4 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -230,7 +230,7 @@ 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->process($bug, undef, $timestamp, $cgi, $vars); }; Bugzilla->error_mode($error_mode_cache); if ($@) { |