]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix checkin of bug 528062--it was missing ::process in the hook call.
authormkanat%bugzilla.org <>
Mon, 23 Nov 2009 07:07:12 +0000 (07:07 +0000)
committermkanat%bugzilla.org <>
Mon, 23 Nov 2009 07:07:12 +0000 (07:07 +0000)
Bugzilla/Object.pm

index cb6543c370011c144102aa1d27c1165780f340a8..a1857db1c2036ff4599bc2d159ff112ce2ba29ff 100644 (file)
@@ -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();