fix getSchemeAndHttpHost()

This commit is contained in:
xiaomlove
2021-03-05 19:43:40 +08:00
parent bdefe4d30b
commit cb4e5e5eb5
5 changed files with 11 additions and 9 deletions

View File

@@ -4534,7 +4534,10 @@ function getFullDirectory($dir)
if (!is_dir($dir)) {
$dir = ROOT_PATH . $dir;
}
return realpath($dir);
if (is_dir($dir)) {
return realpath($dir);
}
return $dir;
}
function checkGuestVisit()