mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[feature/auth-refactor] Fix errors in acp_board
Fixes errors introduced by the last several commits. PHPBB3-9734
This commit is contained in:
parent
08614e2b85
commit
59929669f5
1 changed files with 2 additions and 2 deletions
|
@ -654,7 +654,7 @@ class acp_board
|
|||
{
|
||||
$template->assign_var('S_AUTH', true);
|
||||
|
||||
foreach ($auth_provider as $provider)
|
||||
foreach ($auth_providers as $provider)
|
||||
{
|
||||
$fields = $provider->acp($this->new_config);
|
||||
|
||||
|
@ -674,7 +674,7 @@ class acp_board
|
|||
*/
|
||||
function select_auth_method($selected_method, $key = '')
|
||||
{
|
||||
global $phpbb_root_path, $phpEx;
|
||||
global $phpbb_root_path, $phpEx, $phpbb_container;
|
||||
|
||||
$auth_plugins = array();
|
||||
$auth_providers = $phpbb_container->get('auth.provider_collection');
|
||||
|
|
Loading…
Add table
Reference in a new issue