Commit b454395e authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Fix checkin of bug 528062--it was missing ::process in the hook call.

parent 9fb2bb66
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment