* Change error message.

This commit is contained in:
caoyanyi
2023-07-03 16:37:18 +08:00
parent c997f53f11
commit e3ce85eca4
+2 -2
View File
@@ -1422,8 +1422,8 @@ class execution extends control
}
if(!empty($dateError))
{
foreach($dateError as $index => $error) $dateError[$index] = str_replace(array('。', '.'), array('', ''), $error) . '<br/>';
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);