From f60bee36dc2b2f426bb3fc7fcc29c8d41879ac27 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Fri, 22 Mar 2024 16:16:02 +0800 Subject: [PATCH] - Remove redundant params. --- module/datatable/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/datatable/model.php b/module/datatable/model.php index 701d9cdc92..a0e800ddff 100644 --- a/module/datatable/model.php +++ b/module/datatable/model.php @@ -61,7 +61,7 @@ class datatableModel extends model if($this->config->edition != 'open') { $fields = $this->loadModel('workflowfield')->getList($module); - $workflowFieldList = $this->loadModel('flow')->buildDtableCols($fields, array(), array()); + $workflowFieldList = $this->loadModel('flow')->buildDtableCols($fields); $fieldList = array_merge($fieldList, $workflowFieldList); }