From da283bc32dfe2af8ef93fb3446b8798c6a2f409a Mon Sep 17 00:00:00 2001 From: qiyu-xie Date: Tue, 13 Jul 2021 15:16:47 +0800 Subject: [PATCH] * Fix a bug. --- module/execution/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/control.php b/module/execution/control.php index c23163d4d3..dbc6cd12aa 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -1874,7 +1874,7 @@ class execution extends control { $this->loadModel('project'); $projects = $this->project->getPairsByProgram(0, 'noclosed'); - $executions = $this->project->getStats(); + $executions = $this->project->getStats(0, 'all'); $teams = $this->dao->select('root,account')->from(TABLE_TEAM) ->where('root')->in($this->app->user->view->sprints)