diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-08-24 22:10:10 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-08-24 22:10:34 -0400 |
commit | d847df717573a55cc6e13211fbe853b4784cf53c (patch) | |
tree | c79df8d3e6cd598071818649ace5e875ce48e97b /phpBB/phpbb/auth | |
parent | a8ffbce99f9ea99bd1fdca0e009001026e2d6950 (diff) | |
download | forums-d847df717573a55cc6e13211fbe853b4784cf53c.tar forums-d847df717573a55cc6e13211fbe853b4784cf53c.tar.gz forums-d847df717573a55cc6e13211fbe853b4784cf53c.tar.bz2 forums-d847df717573a55cc6e13211fbe853b4784cf53c.tar.xz forums-d847df717573a55cc6e13211fbe853b4784cf53c.zip |
[feature/oauth] A few more minor changes
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth')
-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 05e308d192..c0fce10e17 100644 --- a/phpBB/phpbb/auth/provider/oauth/token_storage.php +++ b/phpBB/phpbb/auth/provider/oauth/token_storage.php @@ -301,7 +301,7 @@ class phpbb_auth_provider_oauth_token_storage implements TokenStorageInterface if ($token_data === null) { - throw new TokenNotFoundException('Token not stored correctly'); + throw new TokenNotFoundException('AUTH_PROVIDER_OAUTH_TOKEN_ERROR_INCORRECTLY_STORED'); } $token_class = $token_data['token_class']; |