Skip to content

Commit

Permalink
Corrected array key call. Fixes #63
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbilbie committed May 27, 2013
1 parent 92b6ce3 commit 47c24e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/League/OAuth2/Server/Resource.php
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public function isValid()

$sessionScopes = $this->storages['session']->getScopes($this->accessToken);
foreach ($sessionScopes as $scope) {
$this->sessionScopes[] = $scope['key'];
$this->sessionScopes[] = $scope['scope'];
}

return true;
Expand Down

0 comments on commit 47c24e3

Please sign in to comment.