Fixed errors with handling database calls

This commit is contained in:
Alex Bilbie 2012-08-27 14:25:18 +01:00
parent 95931abd6b
commit e191566260

View File

@ -141,7 +141,7 @@ class Server
if ($accessToken) {
$result = $this->_dbCall('validateAccessToken', array($accessToken));
$result = $this->_dbCall('validateAccessToken', $accessToken);
if ($result === false)
{
@ -155,7 +155,7 @@ class Server
$this->_typeId = $result['owner_id'];
// Get the scopes
$this->_scopes = $this->_dbCall('sessionScopes', array($result['id']));
$this->_scopes = $this->_dbCall('sessionScopes', $result['id']);
}
} else {