From df6af7f4da2d7ba7f44e3856c55c2ee1219853fc Mon Sep 17 00:00:00 2001 From: Zhao <756958008@qq.com> Date: Wed, 28 Jul 2021 08:33:10 +0000 Subject: [PATCH] =?UTF-8?q?modified=20=E5=9F=BA=E7=B1=BB=E5=87=BD=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/admin/Base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controller/admin/Base.php b/app/controller/admin/Base.php index ceeb5f5..5c2a030 100644 --- a/app/controller/admin/Base.php +++ b/app/controller/admin/Base.php @@ -57,7 +57,7 @@ class Base extends BaseController { * @author zhaoxiang */ public function updateUserInfo(array $data, bool $isDetail = false): void { - $apiAuth = $this->request->header('apiAuth'); + $apiAuth = $this->request->header('Api-Auth'); if ($isDetail) { AdminUserData::update($data, ['uid' => $this->userInfo['id']]); $this->userInfo['userData'] = (new AdminUserData())->where('uid', $this->userInfo['id'])->find();