diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-03-02 00:24:03 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-03-02 00:24:03 +0100 |
commit | fa91dfa3f39c1111e85abd0c63e2eceee3214b1a (patch) | |
tree | 0ff86bc1c0755814e1a15a74a3554070b78a3fd8 /extensions/MyDashboard | |
parent | a7d25f1095338d1d183887c790fdd6054cb5dbd4 (diff) | |
download | bugzilla-fa91dfa3f39c1111e85abd0c63e2eceee3214b1a.tar.gz bugzilla-fa91dfa3f39c1111e85abd0c63e2eceee3214b1a.tar.xz |
MyDashboard change for inprogress bugs
Diffstat (limited to 'extensions/MyDashboard')
-rw-r--r-- | extensions/MyDashboard/lib/Queries.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/MyDashboard/lib/Queries.pm b/extensions/MyDashboard/lib/Queries.pm index 2b9d11737..eb82f65a0 100644 --- a/extensions/MyDashboard/lib/Queries.pm +++ b/extensions/MyDashboard/lib/Queries.pm @@ -72,7 +72,7 @@ sub QUERY_DEFS { heading => "In Progress Reported by You", description => 'You reported the bug, the developer accepted the bug and is hopefully working on it.', params => { - 'bug_status' => [ map { $_->name } grep($_->name ne 'NEW' && $_->name ne 'MODIFIED', open_states()) ], + 'bug_status' => [ map { $_->name } grep($_->name ne 'UNCONFIRMED' && $_->name ne 'NEW', open_states()) ], 'emailreporter1' => 1, 'emailtype1' => 'exact', 'email1' => $user->login |