diff --git a/module/report/model.php b/module/report/model.php index 660332b8b0..0a3f5e5b93 100644 --- a/module/report/model.php +++ b/module/report/model.php @@ -402,7 +402,7 @@ EOT; { $bugSummary[$bug->openedBy][$bug->resolution] = empty($bugSummary[$bug->openedBy][$bug->resolution]) ? 1 : $bugSummary[$bug->openedBy][$bug->resolution] + 1; $bugSummary[$bug->openedBy]['all'] = empty($bugSummary[$bug->openedBy]['all']) ? 1 : $bugSummary[$bug->openedBy]['all'] + 1; - if($bug->status == 'resolved') + if($bug->status == 'resolved' or $bug->status == 'closed') { $bugSummary[$bug->openedBy]['resolved'] = empty($bugSummary[$bug->openedBy]['resolved']) ? 1 : $bugSummary[$bug->openedBy]['resolved'] + 1; }