支付入口文件生生成根目录错误修复

This commit is contained in:
Devil 2021-08-09 16:13:30 +08:00
parent 95e5c67d97
commit b55c61723a

View File

@ -808,15 +808,15 @@ namespace think;
// 支付模块标记
define('PAYMENT_TYPE', '{$params["payment"]}');
// 根目录入口
define('IS_ROOT_ACCESS', true);
// 引入公共入口文件
require __DIR__.'/public/core.php';
// 加载基础文件
require __DIR__ . '/vendor/autoload.php';
// 根目录入口
define('IS_ROOT_ACCESS', true);
// 执行HTTP应用并响应
\$http = (new App())->http;
\$response = \$http->name('{$module_notify}')->run();
@ -840,15 +840,15 @@ namespace think;
// 支付模块标记
define('PAYMENT_TYPE', '{$params["payment"]}');
// 根目录入口
define('IS_ROOT_ACCESS', true);
// 引入公共入口文件
require __DIR__.'/public/core.php';
// 加载基础文件
require __DIR__ . '/vendor/autoload.php';
// 根目录入口
define('IS_ROOT_ACCESS', true);
// 执行HTTP应用并响应
\$http = (new App())->http;
\$response = \$http->name('{$module_respond}')->run();