mirror of
				https://github.com/elyby/oauth2-server.git
				synced 2025-05-31 14:12:07 +05:30 
			
		
		
		
	Fixed errors with handling database calls
This commit is contained in:
		@@ -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  {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user