diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-08-09 05:26:44 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-08-09 05:26:44 -0400 |
commit | 69cb2e4c603243f75fcfd288d0018390b763ce05 (patch) | |
tree | 5af7dc8ab251e9230a14c3363d97aff1c1e6b359 /phpBB/includes/ucp/ucp_auth_link.php | |
parent | 0b80aaf2178e5a40f9429ce972c490f6067ef114 (diff) | |
download | forums-69cb2e4c603243f75fcfd288d0018390b763ce05.tar forums-69cb2e4c603243f75fcfd288d0018390b763ce05.tar.gz forums-69cb2e4c603243f75fcfd288d0018390b763ce05.tar.bz2 forums-69cb2e4c603243f75fcfd288d0018390b763ce05.tar.xz forums-69cb2e4c603243f75fcfd288d0018390b763ce05.zip |
[feature/oauth] More template work
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 c1d97c8cf8..cb6d85d6b7 100644 --- a/phpBB/includes/ucp/ucp_auth_link.php +++ b/phpBB/includes/ucp/ucp_auth_link.php @@ -30,6 +30,7 @@ class ucp_auth_link if ($provider_data === null) { // does not support this page, throw error? + throw new Exception('TEMPORARY EXCEPTION'); } $error = array(); @@ -54,6 +55,8 @@ class ucp_auth_link $s_hidden_fields = build_hidden_fields($s_hidden_fields); $template->assign_vars(array( + 'PROVIDER_TEMPLATE_FILE' => $provider_data['TEMPLATE_FILE'], + 'S_HIDDEN_FIELDS' => $s_hidden_fields, 'S_UCP_ACTION' => $this->u_action, )); |