From 908b34850530c43dfe69c75ba76bff2070e446cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Wed, 15 Mar 2017 12:51:27 +0800 Subject: [PATCH] =?UTF-8?q?[dev]=E6=9B=B4=E6=96=B0=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E6=9D=83=E9=99=90=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/admin/controller/Index.php | 6 ++++++ application/admin/controller/User.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/application/admin/controller/Index.php b/application/admin/controller/Index.php index 5a82a6247..10370558f 100644 --- a/application/admin/controller/Index.php +++ b/application/admin/controller/Index.php @@ -89,6 +89,9 @@ class Index extends BasicAdmin { * 修改密码 */ public function pass() { + if (in_array('10000', explode(',', $this->request->post('id')))) { + $this->error('系统超级账号禁止操作!'); + } if (intval($this->request->request('id')) !== intval(session('user.id'))) { $this->error('访问异常!'); } @@ -116,6 +119,9 @@ class Index extends BasicAdmin { * 修改资料 */ public function info() { + if (in_array('10000', explode(',', $this->request->post('id')))) { + $this->error('系统超级账号禁止操作!'); + } if (intval($this->request->request('id')) === intval(session('user.id'))) { return $this->_form('SystemUser', 'user/form'); } else { diff --git a/application/admin/controller/User.php b/application/admin/controller/User.php index baa7535d0..a3b7c1560 100644 --- a/application/admin/controller/User.php +++ b/application/admin/controller/User.php @@ -34,7 +34,7 @@ class User extends BasicAdmin { protected $table = 'SystemUser'; public function index() { - $this->title = '用户管理'; + $this->title = '系统用户管理'; $db = Db::name($this->table)->where('is_deleted', '0'); parent::_list($db); }