diff --git a/module/block/control.php b/module/block/control.php index db15db1834..52f0674fad 100755 --- a/module/block/control.php +++ b/module/block/control.php @@ -1668,6 +1668,7 @@ class block extends control $total = 0; foreach($executions as $execution) { + if(empty($execution->multiple)) continue; if(!isset($overview[$execution->status])) $overview[$execution->status] = 0; $overview[$execution->status]++; $total++; diff --git a/module/execution/model.php b/module/execution/model.php index 929dddff06..323eea12f3 100644 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -1260,7 +1260,7 @@ class executionModel extends model * * @param int $projectID * @param string $type all|sprint|stage|kanban - * @param string $mode all|noclosed|stagefilter or empty + * @param string $mode all|noclosed|stagefilter|withdelete or empty * @access public * @return array */