diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-06-08 12:53:31 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-12-06 11:30:11 +0100 |
commit | 2580ee8590332b1bc9aee8ce1becf890686ddbc1 (patch) | |
tree | 8c2b653833c01f22e84c9713589aaef1769ae8e2 | |
parent | 8a77be3928d857c88251aa3b74ccdc51aa04f68a (diff) | |
download | bugzilla-2580ee8590332b1bc9aee8ce1becf890686ddbc1.tar.gz bugzilla-2580ee8590332b1bc9aee8ce1becf890686ddbc1.tar.xz |
Migrate: Increase anti spam CC limit
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | Bugzilla/Migrate.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/Migrate.pm b/Bugzilla/Migrate.pm index 036127602..e36b1e46a 100644 --- a/Bugzilla/Migrate.pm +++ b/Bugzilla/Migrate.pm @@ -691,6 +691,8 @@ sub insert_bugs { my $dbh = Bugzilla->dbh; print get_text('migrate_creating_bugs'), "\n"; + Bugzilla->params->{antispam_multi_user_limit_count} = 9999999; + my $init_statuses = Bugzilla::Status->can_change_to(); my %allowed_statuses = map { lc($_->name) => 1 } @$init_statuses; |