diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 22:32:59 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 22:33:11 -0400 |
commit | 5fa08b92a29d7349c089eab33b4c38513ef964fd (patch) | |
tree | a35870f88010600bc57f219d74b6667e7a0755fd /phpBB/phpbb | |
parent | 4369cc88762466f16da5aed3bff0037e9d7a46d2 (diff) | |
download | forums-5fa08b92a29d7349c089eab33b4c38513ef964fd.tar forums-5fa08b92a29d7349c089eab33b4c38513ef964fd.tar.gz forums-5fa08b92a29d7349c089eab33b4c38513ef964fd.tar.bz2 forums-5fa08b92a29d7349c089eab33b4c38513ef964fd.tar.xz forums-5fa08b92a29d7349c089eab33b4c38513ef964fd.zip |
[feature/oauth] Fix typo in token storage
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/auth/provider/oauth/token_storage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/token_storage.php b/phpBB/phpbb/auth/provider/oauth/token_storage.php index 8b6a3de327..42142b4fbe 100644 --- a/phpBB/phpbb/auth/provider/oauth/token_storage.php +++ b/phpBB/phpbb/auth/provider/oauth/token_storage.php @@ -83,7 +83,7 @@ class phpbb_auth_provider_oauth_token_storage implements TokenStorageInterface public function retrieveAccessToken() { if( $this->cachedToken instanceOf TokenInterface ) { - return $this->token; + return $this->cachedToken; } $data = array( |