From e3ce85eca411a28b085fc1e1db709fdb9f82beb9 Mon Sep 17 00:00:00 2001 From: caoyanyi Date: Mon, 3 Jul 2023 16:37:18 +0800 Subject: [PATCH] * Change error message. --- module/execution/control.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/execution/control.php b/module/execution/control.php index a6ecf3c7e9..da78f169ce 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -1422,8 +1422,8 @@ class execution extends control } if(!empty($dateError)) { - foreach($dateError as $index => $error) $dateError[$index] = str_replace(array('。', '.'), array('', ''), $error) . '
'; - return $this->sendError($dateError); + foreach($dateError as $index => $error) $dateError[$index] = str_replace(array('。', '.'), array('', ''), $error); + return $this->sendError(implode('; ', $dateError)); } if($begin >= $end) return $this->sendError($this->lang->execution->charts->cfd->errorBegin);