This commit is contained in:
aozhiwei 2019-07-23 11:17:27 +08:00
parent 1c16bbc86d
commit c71fa3b9bc
2 changed files with 4 additions and 1 deletions

@ -1 +1 @@
Subproject commit 5fb5d7f6fcd174b9c4ad4e30e189e90e2b8c846e Subproject commit 21cbf1616cd145c248452eaf77b1e1c7c14c82bd

View File

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