Skip to content

Commit 0a64ccb

Browse files
committed
修复密码错误
1 parent 62d1587 commit 0a64ccb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/Controller/Auth/UserController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -374,9 +374,9 @@ public function destroy(int $id)
374374
*/
375375
public function resetPassword()
376376
{
377-
$postData = $this->request->all() ?? [];
377+
$postData = $this->request->all()['postData'] ?? [];
378378
$params = [
379-
'id' => $postData['id'],
379+
'id' => $postData['uid'],
380380
'old_password' => $postData['old_password'] ?? '',
381381
'new_password' => $postData['new_password'] ?? '',
382382
'confirm_password' => $postData['confirm_password'] ?? '',

config/autoload/logger.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
'handler' => [
7171
'class' => Monolog\Handler\RotatingFileHandler ::class,
7272
'constructor' => [
73-
'filename' => BASE_PATH . '/runtime/logs/code_debug.log',
73+
'filename' => BASE_PATH . '/runtime/logs/code_debug/code_debug.log',
7474
'level' => Monolog\Logger::DEBUG,
7575
],
7676
],

0 commit comments

Comments
 (0)