This commit is contained in:
icret
2023-05-30 11:13:00 +08:00
parent ec38a23168
commit e11ed78520
4 changed files with 6 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ define('APP_ROOT', str_replace('\\', '/', realpath(dirname(__FILE__) . '/../')))
// 判断当前的系统类型是否为windows
define('IS_WIN', strstr(PHP_OS, 'WIN') ? 1 : 0);
// 定义当前版本
define('APP_VERSION', '2.8.2');
define('APP_VERSION', '2.8.3');
/*---------------基础配置结束-------------------*/

View File

@@ -31,7 +31,7 @@ if (empty($_FILES['file'])) {
if (empty($_POST['sign']) || time() - $_POST['sign'] > 12306) {
exit(json_encode(array(
"result" => "failed",
"code" => 403,
"code" => 403,
"systime" => time(),
"message" => "上传签名错误,请刷新重试",
)));