From: mkanat%bugzilla.org <> Date: Mon, 23 Nov 2009 07:07:12 +0000 (+0000) Subject: Fix checkin of bug 528062--it was missing ::process in the hook call. X-Git-Tag: bugzilla-3.5.3~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b454395e9affdbd1ba7eb859f21bb1cc9285b4fe;p=thirdparty%2Fbugzilla.git Fix checkin of bug 528062--it was missing ::process in the hook call. --- diff --git a/Bugzilla/Object.pm b/Bugzilla/Object.pm index cb6543c370..a1857db1c2 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();