diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-08-14 23:17:57 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-08-14 23:18:10 -0400 |
commit | e2d0a0b7c83f40c0602ed9064e12dded96fdc897 (patch) | |
tree | 9f46c06f6b0d19b4165f68c1c5255994f89d2d85 /phpBB/includes/ucp/ucp_auth_link.php | |
parent | 0ea3103a441282190533c973bfb9fe5ab7b7ac76 (diff) | |
download | forums-e2d0a0b7c83f40c0602ed9064e12dded96fdc897.tar forums-e2d0a0b7c83f40c0602ed9064e12dded96fdc897.tar.gz forums-e2d0a0b7c83f40c0602ed9064e12dded96fdc897.tar.bz2 forums-e2d0a0b7c83f40c0602ed9064e12dded96fdc897.tar.xz forums-e2d0a0b7c83f40c0602ed9064e12dded96fdc897.zip |
[feature/oauth] Fix template not refreshing issue
PHPBB3-11673
Diffstat (limited to 'phpBB/includes/ucp/ucp_auth_link.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_auth_link.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/includes/ucp/ucp_auth_link.php b/phpBB/includes/ucp/ucp_auth_link.php index df4b433f42..e2bf369984 100644 --- a/phpBB/includes/ucp/ucp_auth_link.php +++ b/phpBB/includes/ucp/ucp_auth_link.php @@ -81,6 +81,9 @@ class ucp_auth_link $link_data = array('link_method' => 'auth_link'); $error[] = $auth_provider->link_account($link_data); + + // Template data may have changed, get new data + $provider_data = $auth_provider->get_auth_link_data(); } if (isset($provider_data['VARS'])) |