diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-06-08 12:53:31 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-06-08 12:53:31 +0200 |
commit | 6ccafca0d69ab705f7d098ce3e0922ea2cea8ece (patch) | |
tree | 7d4e34c622a9be45886f81b496fd4d3648f8c011 /Bugzilla | |
parent | 20f8ca363c10d6e47d3651f6750f70709404158c (diff) | |
download | bugzilla-6ccafca0d69ab705f7d098ce3e0922ea2cea8ece.tar.gz bugzilla-6ccafca0d69ab705f7d098ce3e0922ea2cea8ece.tar.xz |
Migrate: Increase anti spam CC limit
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'Bugzilla')
-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 90623ff67..ccd6b6e12 100644 --- a/Bugzilla/Migrate.pm +++ b/Bugzilla/Migrate.pm @@ -680,6 +680,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; # Bypass the question of whether or not we can file UNCONFIRMED |