diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-13 17:32:27 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-14 14:22:43 -0400 |
commit | b22b076a9972e0bd41551c314f4fea4e938d1d58 (patch) | |
tree | 67b80da703e26ebc57e8e147f72b9900b3b2d447 /phpBB | |
parent | 02921f4b23fd2fa3efc9eddedfe7bfd6d3347297 (diff) | |
download | forums-b22b076a9972e0bd41551c314f4fea4e938d1d58.tar forums-b22b076a9972e0bd41551c314f4fea4e938d1d58.tar.gz forums-b22b076a9972e0bd41551c314f4fea4e938d1d58.tar.bz2 forums-b22b076a9972e0bd41551c314f4fea4e938d1d58.tar.xz forums-b22b076a9972e0bd41551c314f4fea4e938d1d58.zip |
[feature/oauth] Update invocation of method in OAuth
PHPBB3-11673
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/auth/provider/oauth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/auth/provider/oauth.php b/phpBB/includes/auth/provider/oauth.php index 55a12211d6..ee18c0f60d 100644 --- a/phpBB/includes/auth/provider/oauth.php +++ b/phpBB/includes/auth/provider/oauth.php @@ -177,7 +177,7 @@ class phpbb_auth_provider_oauth extends phpbb_auth_provider_base return $this->service; } - $storage = new phpbb_auth_oauth_token_storage($this->db, $service_name); + $storage = new phpbb_auth_oauth_token_storage($this->db, $this->user, $service_name); $current_uri = $this->get_current_uri(); |