[feature/auth-refactor] Fix errors in acp_board

Fixes errors introduced by the last several commits.

PHPBB3-9734
This commit is contained in:
Joseph Warner 2013-06-25 22:26:45 -04:00
parent 08614e2b85
commit 59929669f5

View file

@ -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');