From 7f16a9065617dd087712f9daad630967f4695585 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Mon, 4 Feb 2008 18:23:47 +0000 Subject: Bug 413772: Eliminate sqlify_criteria() in Bugzilla::Flag and replace match() there with Bugzilla::Object::match() - Patch by Max Kanat-Alexander r/a=LpSolit --- editusers.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editusers.cgi') 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, -- cgit v1.2.3-24-g4f1b