We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4338032 commit af994e7Copy full SHA for af994e7
2 files changed
phpBB/phpbb/auth/provider/oauth/oauth.php
@@ -674,6 +674,7 @@ public function get_auth_link_data($user_id = 0)
674
'oauth_service' => $actual_name,
675
),
676
677
+ 'SERVICE_ID' => $actual_name,
678
'SERVICE_NAME' => $this->user->lang['AUTH_PROVIDER_OAUTH_SERVICE_' . strtoupper($actual_name)],
679
'UNIQUE_ID' => (isset($oauth_user_ids[$actual_name])) ? $oauth_user_ids[$actual_name] : null,
680
);
phpBB/styles/prosilver/template/ucp_auth_link_oauth.html
@@ -1,5 +1,5 @@
1
<!-- BEGIN oauth -->
2
- <form id="ucp" method="post" action="{S_UCP_ACTION}">
+ <form id="ucp_oauth_{oauth.SERVICE_ID}" method="post" action="{S_UCP_ACTION}">
3
<h3>{oauth.SERVICE_NAME}</h3>
4
5
<fieldset class="fields2">
0 commit comments