summaryrefslogtreecommitdiffstats
path: root/extensions/MyDashboard/lib/WebService.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-09-17 09:20:09 +0200
committerByron Jones <bjones@mozilla.com>2013-09-17 09:20:09 +0200
commit63a1d66888534a188525dc13a159908adcc86a67 (patch)
tree2d2b1243418b1f11240345c2426369632e00426e /extensions/MyDashboard/lib/WebService.pm
parent160a717a33ff84142355a93702aa5232c9e03671 (diff)
downloadbugzilla-63a1d66888534a188525dc13a159908adcc86a67.tar.gz
bugzilla-63a1d66888534a188525dc13a159908adcc86a67.tar.xz
Bug 902457: Remove 'Include Closed' from MyDashboard (show all requests regardless of a bug's status)
Diffstat (limited to 'extensions/MyDashboard/lib/WebService.pm')
-rw-r--r--extensions/MyDashboard/lib/WebService.pm4
1 files changed, 1 insertions, 3 deletions
diff --git a/extensions/MyDashboard/lib/WebService.pm b/extensions/MyDashboard/lib/WebService.pm
index 69f43f322..41d327446 100644
--- a/extensions/MyDashboard/lib/WebService.pm
+++ b/extensions/MyDashboard/lib/WebService.pm
@@ -87,9 +87,7 @@ sub run_flag_query {
{ function => 'MyDashboard.run_flag_query',
param => 'type' });
- my $include_closed = $params->{include_closed} || 0;
- my $results = query_flags($type, $include_closed);
-
+ my $results = query_flags($type);
return { result => { $type => $results }};
}