Transformed user class as components class

This commit is contained in:
Pierre
2017-06-03 14:24:45 +02:00
parent db4c939864
commit 97d7825426
4 changed files with 8 additions and 10 deletions

View File

@ -38,7 +38,7 @@ if(!$cs->tokens->checkClientRequestTokens())
//Check if login tokens where specified
if(isset($_POST['userToken1']) AND isset($_POST['userToken2'])){
//Try to login user
$userID = $cs->user->getUserIDfromToken(APIServiceID, array(
$userID = $cs->components->user->getUserIDfromToken(APIServiceID, array(
$_POST['userToken1'],
$_POST['userToken2']
));