summaryrefslogtreecommitdiffstats
path: root/contrib/reorg-tools/movebugs.pl
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-08-01 08:15:20 +0200
committerByron Jones <bjones@mozilla.com>2013-08-01 08:15:20 +0200
commit612dd017fd0901d653fb8145385079a578b74caa (patch)
tree8060c14e6544f2e3981281513f56be4b1fa9e887 /contrib/reorg-tools/movebugs.pl
parente985249f971bdeebb498e6f8ba6cc5ff4d160d97 (diff)
downloadbugzilla-612dd017fd0901d653fb8145385079a578b74caa.tar.gz
bugzilla-612dd017fd0901d653fb8145385079a578b74caa.tar.xz
Bug 859550: Create a user profile page for bugzilla users
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();