Commit 46681b3f authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 599023: importxml.pl fails if UNCONFIRMED is the single bug status allowed…

Bug 599023: importxml.pl fails if UNCONFIRMED is the single bug status allowed when reporting a new bug r=ghendricks a=LpSolit
parent 6129e24c
......@@ -919,7 +919,7 @@ sub process_bug {
$initial_status = $bug_statuses[0]->name;
}
else {
@bug_statuses = @{Bugzilla::Status->get_all()};
@bug_statuses = Bugzilla::Status->get_all();
# Exclude UNCO and inactive bug statuses.
@bug_statuses = grep { $_->is_active && $_->name ne 'UNCONFIRMED'} @bug_statuses;
my @open_statuses = grep { $_->is_open } @bug_statuses;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment