From b21f1db3cd56f395972104efe63cafa19af2b307 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Mon, 14 Oct 2024 14:18:32 +0900 Subject: [PATCH] cfmgrv4 init...2 --- app/Controllers/Admin/UserSNSController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Controllers/Admin/UserSNSController.php b/app/Controllers/Admin/UserSNSController.php index 8ef1dae..3d32551 100644 --- a/app/Controllers/Admin/UserSNSController.php +++ b/app/Controllers/Admin/UserSNSController.php @@ -100,7 +100,7 @@ class UserSNSController extends AdminController $this->field_rules = $this->getModel()->getFieldRules($this->action, $this->fields); $this->filter_fields = [$this->getModel()::PARENT, 'status']; $this->field_options = $this->getFormFieldOptions($this->filter_fields); - $this->batchjob_fields = ['status']; + $this->batchjob_fields = []; return $this->list_procedure(); } // Download @@ -111,7 +111,7 @@ class UserSNSController extends AdminController $this->field_rules = $this->getModel()->getFieldRules($this->action, $this->fields); $this->filter_fields = [$this->getModel()::PARENT, 'status']; $this->field_options = $this->getFormFieldOptions($this->filter_fields); - $this->batchjob_fields = ['status']; + $this->batchjob_fields = []; return $this->download_procedure($output_type, $uid); } }