summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-01-09 22:01:11 +0100
committerDave Lawrence <dlawrence@mozilla.com>2012-01-09 22:01:11 +0100
commitfc00589a935d888db49ca4d45675102f1affacd0 (patch)
treeda99ccc4803ccb292daf4037a8f19b92d0fd5a54 /Bugzilla/Bug.pm
parent23df227af3c7e2d1e9aaefda9ff2b4fd45546ac3 (diff)
downloadbugzilla-fc00589a935d888db49ca4d45675102f1affacd0.tar.gz
bugzilla-fc00589a935d888db49ca4d45675102f1affacd0.tar.xz
715477: Inactive but set flags are no longer visible when editing a bug
https://bugzilla.mozilla.org/show_bug.cgi?id=715477
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm5
1 files changed, 2 insertions, 3 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 131ece6ff..6b51129af 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -3290,8 +3290,7 @@ sub duplicate_ids {
}
sub flag_types {
- my ($self, $params) = @_;
- $params ||= {};
+ my ($self) = @_;
return $self->{'flag_types'} if exists $self->{'flag_types'};
return [] if $self->{'error'};
@@ -3299,7 +3298,7 @@ sub flag_types {
product_id => $self->{product_id},
component_id => $self->{component_id},
bug_id => $self->bug_id,
- %$params };
+ active_or_has_flags => $self->bug_id };
$self->{'flag_types'} = Bugzilla::Flag->_flag_types($vars);
return $self->{'flag_types'};