diff options
| author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-24 13:46:33 -0400 |
|---|---|---|
| committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-24 13:46:33 -0400 |
| commit | 581cb37b8c7ae4f1902cfd6114a34ce1510139a8 (patch) | |
| tree | aae7b4d463c7c64ad0e2ac0528b41961abce3b8e /phpBB/phpbb/auth/provider/interface.php | |
| parent | 669586c134641b29a95faa43090df124b59d4e14 (diff) | |
| download | forums-581cb37b8c7ae4f1902cfd6114a34ce1510139a8.tar forums-581cb37b8c7ae4f1902cfd6114a34ce1510139a8.tar.gz forums-581cb37b8c7ae4f1902cfd6114a34ce1510139a8.tar.bz2 forums-581cb37b8c7ae4f1902cfd6114a34ce1510139a8.tar.xz forums-581cb37b8c7ae4f1902cfd6114a34ce1510139a8.zip | |
[feature/oauth] Start linking/registering OAuth accounts during login
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth/provider/interface.php')
| -rw-r--r-- | phpBB/phpbb/auth/provider/interface.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/phpbb/auth/provider/interface.php b/phpBB/phpbb/auth/provider/interface.php index f4344c1dc7..9cee63abeb 100644 --- a/phpBB/phpbb/auth/provider/interface.php +++ b/phpBB/phpbb/auth/provider/interface.php @@ -45,6 +45,11 @@ interface phpbb_auth_provider_interface * 'error_msg' => string * 'user_row' => array * ) + * A fourth key of the array may be present 'redirect_data' + * This key is only used when 'status' is equal to + * LOGIN_SUCCESS_LINK_PROFILE and it's value is an + * associative array that is turned into GET variables on + * the redirect url. */ public function login($username, $password); |
