From d93f6e66552a4ea76399b7d34c45101f6bab6601 Mon Sep 17 00:00:00 2001 From: sunhao Date: Sat, 6 Jul 2024 13:53:35 +0800 Subject: [PATCH] * [bug #52255, done, 0.3h] fix col not show after save cols. --- module/datatable/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/datatable/control.php b/module/datatable/control.php index 5a2147ce01..ef2f3396ee 100644 --- a/module/datatable/control.php +++ b/module/datatable/control.php @@ -127,7 +127,7 @@ class datatable extends control if($this->post->global) $this->setting->setItem('system.' . $name, $value); if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => 'dao error.')); - return $this->send(array('result' => 'success', 'closeModal' => true, 'load' => 'table')); + return $this->send(array('result' => 'success', 'closeModal' => true, 'load' => true)); } }