From ceed7f755dca6c15df9cb5cd14bd8e1f8ff0050b Mon Sep 17 00:00:00 2001 From: holan20180123 <56391770@qq.com> Date: Wed, 19 May 2021 11:21:55 +0800 Subject: [PATCH] * Fix bug #12654. --- 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 3c7273061d..9ec5555c98 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -1980,7 +1980,7 @@ class execution extends control $this->view->hasBurn = $hasBurn; $this->view->datas = $datas; - $this->view->chartData = $chartData; + $this->view->chartData = isset($chartData) ? $chartData : array(); $this->view->storySpecs = $storySpecs; $this->view->realnames = $this->loadModel('user')->getRealNameAndEmails($users); $this->view->executionID = $executionID;