summaryrefslogtreecommitdiffstats
path: root/contrib/reorg-tools/movebugs.pl
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/reorg-tools/movebugs.pl')
-rwxr-xr-xcontrib/reorg-tools/movebugs.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/reorg-tools/movebugs.pl b/contrib/reorg-tools/movebugs.pl
index 6d6a53b51..adc02a1e0 100755
--- a/contrib/reorg-tools/movebugs.pl
+++ b/contrib/reorg-tools/movebugs.pl
@@ -10,6 +10,7 @@ use lib "$FindBin::Bin/../../lib";
use Bugzilla;
use Bugzilla::Constants;
use Bugzilla::FlagType;
+use Bugzilla::Hook;
use Bugzilla::Util;
Bugzilla->usage_mode(USAGE_MODE_CMDLINE);
@@ -168,5 +169,7 @@ $dbh->do(
undef,
$user_id, $component_field_id, $old_component, $new_component);
+Bugzilla::Hook::process('reorg_move_bugs', { bug_ids => $ra_ids } );
+
$dbh->bz_commit_transaction();