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)