From 50e43aed323dfa77cbfa465cfb6a93692cba6644 Mon Sep 17 00:00:00 2001 From: dingguodong Date: Fri, 8 Sep 2023 14:17:54 +0800 Subject: [PATCH] * Fix typo. --- module/execution/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/model.php b/module/execution/model.php index c99b54a7fc..522d390e24 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -865,7 +865,7 @@ class executionModel extends model $this->dao->update(TABLE_EXECUTION)->data($execution) ->autoCheck('begin,end') - ->batchcheck($this->config->execution->edit->requiredFields, 'notempty') + ->batchCheck($this->config->execution->edit->requiredFields, 'notempty') ->checkIF($execution->begin != '', 'begin', 'date') ->checkIF($execution->end != '', 'end', 'date') ->checkIF($execution->end != '', 'end', 'ge', $execution->begin)