summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-08-26 08:12:12 +0200
committerDylan William Hardison <dylan@hardison.net>2018-08-26 08:12:12 +0200
commit32c44a8de8c03f3e637b38c9c63f713c5a54da56 (patch)
tree4d6a3e0283cdb19fd8c32c837ae17f70af466e4d /Bugzilla/Install.pm
parent13f4e6bd7522fc0192eb93ce820df9c319f75c86 (diff)
downloadbugzilla-32c44a8de8c03f3e637b38c9c63f713c5a54da56.tar.gz
bugzilla-32c44a8de8c03f3e637b38c9c63f713c5a54da56.tar.xz
Revert "make the default workflow the same as bmo"
Diffstat (limited to 'Bugzilla/Install.pm')
-rw-r--r--Bugzilla/Install.pm2
1 files changed, 0 insertions, 2 deletions
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm
index 14fe904eb..c9935f34d 100644
--- a/Bugzilla/Install.pm
+++ b/Bugzilla/Install.pm
@@ -19,7 +19,6 @@ use 5.10.1;
use strict;
use warnings;
-use Bugzilla::Logging;
use Bugzilla::Component;
use Bugzilla::Config qw(:admin);
use Bugzilla::Constants;
@@ -396,7 +395,6 @@ sub init_workflow {
'SELECT value, id FROM bug_status', {Columns=>[1,2]}) };
foreach my $pair (STATUS_WORKFLOW) {
- WARN("unknown bug_status: " . $pair->[1]) unless $status_ids{$pair->[1]};
my $old_id = $pair->[0] ? $status_ids{$pair->[0]} : undef;
my $new_id = $status_ids{$pair->[1]};
$dbh->do('INSERT INTO status_workflow (old_status, new_status)