From b454395e9affdbd1ba7eb859f21bb1cc9285b4fe Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Mon, 23 Nov 2009 07:07:12 +0000 Subject: Fix checkin of bug 528062--it was missing ::process in the hook call. --- Bugzilla/Object.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Bugzilla/Object.pm') diff --git a/Bugzilla/Object.pm b/Bugzilla/Object.pm index cb6543c37..a1857db1c 100644 --- a/Bugzilla/Object.pm +++ b/Bugzilla/Object.pm @@ -348,9 +348,9 @@ sub update { $dbh->do("UPDATE $table SET $columns WHERE $id_field = ?", undef, @values, $self->id) if @values; - Bugzilla::Hook('object-end_of_update', - { object => $self, old_object => $old_self, - changes => \%changes }); + Bugzilla::Hook::process('object-end_of_update', + { object => $self, old_object => $old_self, + changes => \%changes }); $dbh->bz_commit_transaction(); -- cgit v1.2.3-24-g4f1b