完善皮肤样式对手机端的兼容;完善部分兼容php8.1细节;修改说明;

This commit is contained in:
2022-07-12 15:15:48 +08:00
parent b401baa696
commit ff08ddf3b8
6 changed files with 59 additions and 5 deletions

View File

@@ -222,6 +222,18 @@ if (!function_exists('unparse_url')) {
}
}
if (!function_exists('ua_htmlspecialchars')) {
function ua_htmlspecialchars($string)
{
if (is_null($string)) {
$string = '';
}
return htmlspecialchars($string);
}
}
function build_upload_url($url, $upload_type = null)
{