summaryrefslogtreecommitdiffstats
path: root/enter_bug.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-xenter_bug.cgi13
1 files changed, 10 insertions, 3 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi
index a609a2b9a..1769b464c 100755
--- a/enter_bug.cgi
+++ b/enter_bug.cgi
@@ -149,9 +149,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;