[更新]修复用户授权完全取消时不能成功

This commit is contained in:
邹景立 2018-05-06 11:12:29 +08:00
parent 9edbabdac9
commit 4f5afd6905
3 changed files with 11 additions and 3 deletions

View File

@ -133,6 +133,8 @@ class User extends BasicAdmin
if ($this->request->isPost()) { if ($this->request->isPost()) {
if (isset($data['authorize']) && is_array($data['authorize'])) { if (isset($data['authorize']) && is_array($data['authorize'])) {
$data['authorize'] = join(',', $data['authorize']); $data['authorize'] = join(',', $data['authorize']);
} else {
$data['authorize'] = '';
} }
if (isset($data['id'])) { if (isset($data['id'])) {
unset($data['username']); unset($data['username']);

6
config/aliyun.php Normal file
View File

@ -0,0 +1,6 @@
<?php
return [
'appid' => 'WjeX0AYSfgy5VbXQ',
'appkey' => 'hQTENHy6MYVUTgwjcgfOCq5gckm2Lp',
];

View File

@ -16,13 +16,13 @@ return [
// 数据库类型 // 数据库类型
'type' => 'mysql', 'type' => 'mysql',
// 服务器地址 // 服务器地址
'hostname' => '127.0.0.1', 'hostname' => 'server.cuci.cc',
// 数据库名 // 数据库名
'database' => 'admin_v3', 'database' => 'admin_v3',
// 用户名 // 用户名
'username' => 'admin_v3', 'username' => 'root',
// 密码 // 密码
'password' => 'FbYBHcWKr2', 'password' => 'Test12345',
// 端口 // 端口
'hostport' => '3306', 'hostport' => '3306',
// 连接dsn // 连接dsn