禁用用户bug修复
This commit is contained in:
parent
decf9bd556
commit
4f07c047b8
@ -99,10 +99,10 @@ class User extends BaseController
|
||||
$data['update_time'] = time();
|
||||
$data['id'] = $id;
|
||||
if (Db::name('User')->update($data) !== false) {
|
||||
if ($param['status'] == 0) {
|
||||
add_log('disable', $param['id'], $param);
|
||||
} else if ($param['status'] == 1) {
|
||||
add_log('recovery', $param['id'], $param);
|
||||
if ($data['status'] == 0) {
|
||||
add_log('disable', $id, $data);
|
||||
} else if ($data['status'] == 1) {
|
||||
add_log('recovery', $id, $data);
|
||||
}
|
||||
return to_assign();
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user