summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Object.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2009-11-23 08:07:12 +0100
committermkanat%bugzilla.org <>2009-11-23 08:07:12 +0100
commitb454395e9affdbd1ba7eb859f21bb1cc9285b4fe (patch)
tree1bf19b3767a4d59489281e5d740a44f2b6e22fa0 /Bugzilla/Object.pm
parent9fb2bb66cfe8d106603a59c78ad742bebdbbaf09 (diff)
downloadbugzilla-b454395e9affdbd1ba7eb859f21bb1cc9285b4fe.tar.gz
bugzilla-b454395e9affdbd1ba7eb859f21bb1cc9285b4fe.tar.xz
Fix checkin of bug 528062--it was missing ::process in the hook call.
Diffstat (limited to 'Bugzilla/Object.pm')
-rw-r--r--Bugzilla/Object.pm6
1 files changed, 3 insertions, 3 deletions
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();