From cc70bc5b54728a8501c94bdb6f320532e4edbf5d Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期三, 14 五月 2025 14:53:57 +0800 Subject: [PATCH] 1111 【后台】修复个人邮件审核失败bug; --- Account/userlogdetail.php | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/Account/userlogdetail.php b/Account/userlogdetail.php index 1ee02b3..578f4ba 100644 --- a/Account/userlogdetail.php +++ b/Account/userlogdetail.php @@ -42,11 +42,15 @@ $doCheck = intval($_GET["doCheck"]); if ($doCheck == \User\GMTCheckState::OK) { $postUrl = 'http://' . $_SERVER['HTTP_HOST'] . "/Common/GMCmdProcess.php"; - $postData = array("processType" => "CheckOK", "GMTLogGUID" => $logInfo["GUID"]); + $postData = array("GMTLogGUID" => $logInfo["GUID"]); foreach ($logInfo["Post"] as $key => $value) { $postData[urlencode($key)] = $value; } + $postData["processType"] = "CheckOK"; + \Logging\LogInfo("postUrl: " . $postUrl); + \Logging\LogInfo("postData: " . print_r($postData, true)); $ret = \CommFunc\DoPost($postUrl, $postData, true); + \Logging\LogInfo("ret: " . $ret); $ret = json_decode($ret, true); $errorMsg = \Lang\gettext("鎿嶄綔澶辫触"); if (!isset($ret) || $ret["ProcessRetCode"] != 0) { -- Gitblit v1.8.0