This commit is contained in:
aozhiwei 2019-07-23 11:16:48 +08:00
parent 99367ba816
commit e4f8c263ab

View File

@ -16,6 +16,9 @@ spl_autoload_register('autoload_controller__');
function loginVerify($accountid, $sessionid)
{
if (!phpcommon\isValidSessionId($accountid, $sessionid)) {
return false;
}
return true;
}