From d70f291452823c23cef444e8562bba97c5ac8cd7 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Thu, 16 Oct 2014 14:50:48 +0000 Subject: Bug 1083790: Default version does not take into account is_active --- enter_bug.cgi | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'enter_bug.cgi') diff --git a/enter_bug.cgi b/enter_bug.cgi index f0c86b9ee..171b4566f 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -202,9 +202,16 @@ if ($cloned_bug_id) { $cloned_bug_id = $cloned_bug->id; } -if (scalar(@{$product->components}) == 1) { - # Only one component; just pick it. - $cgi->param('component', $product->components->[0]->name); +# If there is only one active component, choose it +my @active = grep { $_->is_active } @{$product->components}; +if (scalar(@active) == 1) { + $cgi->param('component', $active[0]->name); +} + +# If there is only one active version, choose it +@active = grep { $_->is_active } @{$product->versions}; +if (scalar(@active) == 1) { + $cgi->param('version', $active[0]->name); } my %default; -- cgit v1.2.3-24-g4f1b