diff options
author | Matthew Somerville <matthew@mysociety.org> | 2013-04-19 11:27:49 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-04-19 11:27:49 +0100 |
commit | 9f35b3f063fea4bf32dfebbb64d97eb7e2af2a24 (patch) | |
tree | 10b6d21c4926905fad93da38a1fd148acd0b6925 /bin/update-all-reports | |
parent | 7ad48ce94d40b8113cc82ee58a8088c06ed72d87 (diff) |
Include other open states in all reports table.
Diffstat (limited to 'bin/update-all-reports')
-rwxr-xr-x | bin/update-all-reports | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update-all-reports b/bin/update-all-reports index e60d7ddef..75a7cddd1 100755 --- a/bin/update-all-reports +++ b/bin/update-all-reports @@ -64,7 +64,7 @@ while ( my @problem = $problems->next ) { $fixed{$body}{$duration_str}++; } else { # Open problems are either unknown, older, or new - $open{$body}{$type}++ if $problem{state} eq 'confirmed'; + $open{$body}{$type}++; } } } |