diff options
author | lpsolit%gmail.com <> | 2008-02-04 18:23:47 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-02-04 18:23:47 +0000 |
commit | 7f16a9065617dd087712f9daad630967f4695585 (patch) | |
tree | 9576276b38a35105f719efc4d38b841596a0b133 /editusers.cgi | |
parent | 3648734c240133eb65934f0548f43850d59472e7 (diff) | |
download | bugs-7f16a9065617dd087712f9daad630967f4695585.tar bugs-7f16a9065617dd087712f9daad630967f4695585.tar.gz bugs-7f16a9065617dd087712f9daad630967f4695585.tar.bz2 bugs-7f16a9065617dd087712f9daad630967f4695585.tar.xz bugs-7f16a9065617dd087712f9daad630967f4695585.zip |
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 'editusers.cgi')
-rwxr-xr-x | editusers.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editusers.cgi b/editusers.cgi index 6dda0e97a..11bd62bde 100755 --- a/editusers.cgi +++ b/editusers.cgi @@ -484,14 +484,14 @@ if ($action eq 'search') { foreach (@$buglist) { my ($bug_id, $attach_id) = @$_; - my @old_summaries = Bugzilla::Flag::snapshot($bug_id, $attach_id); + my @old_summaries = Bugzilla::Flag->snapshot($bug_id, $attach_id); if ($attach_id) { $sth_flagupdate_attachment->execute($bug_id, $attach_id, $otherUserID); } else { $sth_flagupdate_bug->execute($bug_id, $otherUserID); } - my @new_summaries = Bugzilla::Flag::snapshot($bug_id, $attach_id); + my @new_summaries = Bugzilla::Flag->snapshot($bug_id, $attach_id); # Let update_activity do all the dirty work, including setting # the bug timestamp. Bugzilla::Flag::update_activity($bug_id, $attach_id, $timestamp, |