mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[feature/auth-refactor] Fix errors in acp_board
Fixes errors introduced by the last several commits. PHPBB3-9734
This commit is contained in:
@@ -654,7 +654,7 @@ class acp_board
|
|||||||
{
|
{
|
||||||
$template->assign_var('S_AUTH', true);
|
$template->assign_var('S_AUTH', true);
|
||||||
|
|
||||||
foreach ($auth_provider as $provider)
|
foreach ($auth_providers as $provider)
|
||||||
{
|
{
|
||||||
$fields = $provider->acp($this->new_config);
|
$fields = $provider->acp($this->new_config);
|
||||||
|
|
||||||
@@ -674,7 +674,7 @@ class acp_board
|
|||||||
*/
|
*/
|
||||||
function select_auth_method($selected_method, $key = '')
|
function select_auth_method($selected_method, $key = '')
|
||||||
{
|
{
|
||||||
global $phpbb_root_path, $phpEx;
|
global $phpbb_root_path, $phpEx, $phpbb_container;
|
||||||
|
|
||||||
$auth_plugins = array();
|
$auth_plugins = array();
|
||||||
$auth_providers = $phpbb_container->get('auth.provider_collection');
|
$auth_providers = $phpbb_container->get('auth.provider_collection');
|
||||||
|
Reference in New Issue
Block a user