From 3b7f8eda139e9e5044ba8ff68b5b4b3ff3e62ec8 Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 17 Nov 2020 10:35:49 +0800 Subject: [PATCH] Update User.php --- app/admin/controller/User.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/admin/controller/User.php b/app/admin/controller/User.php index 09804d286..6e128d404 100644 --- a/app/admin/controller/User.php +++ b/app/admin/controller/User.php @@ -127,15 +127,15 @@ class User extends Controller if (empty($data['username'])) $this->error('登录账号不能为空!'); $where = ['username' => $data['username'], 'is_deleted' => 0]; if ($this->app->db->name($this->table)->where($where)->count() > 0) { - $this->error("账号{$data['username']}已经存在,请使用其它账号!"); + $this->error("账号已经存在,请使用其它账号!"); } // 新添加的用户密码与账号相同 $data['password'] = md5($data['username']); } // 账号权限绑定处理 - $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : ''; + $data['authorize'] = arr2str($data['authorize'] ?? []); } else { - $data['authorize'] = explode(',', $data['authorize'] ?? ''); + $data['authorize'] = str2arr($data['authorize'] ?? ''); $this->authorizes = $this->app->db->name('SystemAuth')->where(['status' => 1])->order('sort desc,id desc')->select()->toArray(); } } @@ -172,7 +172,7 @@ class User extends Controller */ private function _checkInput() { - if (in_array('10000', explode(',', input('id', '')))) { + if (in_array('10000', str2arr(input('id', '')))) { $this->error('系统超级账号禁止删除!'); } }