From 01ecc4525e2ba7f6423c67eb1f83e9e4c5442174 Mon Sep 17 00:00:00 2001 From: augushong Date: Wed, 6 Sep 2023 09:28:48 +0800 Subject: [PATCH] =?UTF-8?q?curd=E6=9F=A5=E8=AF=A2=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E4=B8=8D=E7=BB=8F=E8=BF=87=E4=BB=BB=E4=BD=95=E8=BF=87=E6=BB=A4?= =?UTF-8?q?=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/controller/AdminController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/controller/AdminController.php b/app/common/controller/AdminController.php index b7ad56f..8bf8c6a 100644 --- a/app/common/controller/AdminController.php +++ b/app/common/controller/AdminController.php @@ -212,7 +212,7 @@ class AdminController extends BaseController */ protected function buildTableParames($excludeFields = []) { - $get = $this->request->get('', null); + $get = $this->request->get('', null, null); $page = isset($get['page']) && !empty($get['page']) ? $get['page'] : 1; $limit = isset($get['limit']) && !empty($get['limit']) ? $get['limit'] : 15; $group = isset($get['group']) && !empty($get['group']) ? $get['group'] : null;