Browse Source

会员升级

Kirin 1 year ago
parent
commit
38c8abb3b5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      crmeb/services/WithdrawService.php

+ 1 - 1
crmeb/services/WithdrawService.php

@@ -89,7 +89,7 @@ class WithdrawService
     public static function decode($businessBodyString)
     {
         //进行Aes解密
-        include_once '../phpseclib/Crypt/AES.php';
+        include_once './phpseclib/Crypt/AES.php';
         $aes = new \Crypt_AES(CRYPT_AES_MODE_ECB);
         $aes->setKey(self::$aeskey);
         $data = $aes->decrypt(base64_decode($businessBodyString));