1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 20:13:22 +01:00

[feature/oauth] Fix bug on ucp_auth_link related to error display

PHPBB3-11673
This commit is contained in:
Joseph Warner 2013-09-02 16:54:14 -04:00
parent ae18f921ea
commit d5808f13e5

View File

@ -125,6 +125,7 @@ class ucp_auth_link
// Replace "error" strings with their real, localised form
$error = array_map(array($user, 'lang'), $error);
$error = implode('<br />', $error);
$template->assign_vars(array(
'ERROR' => $error,