diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-06-25 22:26:45 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-06-25 22:27:16 -0400 |
commit | 59929669f508f06b2440bf36af463851acbeb711 (patch) | |
tree | 33d1f5e4c3002a241bc7acb04571982931b6dc3b | |
parent | 08614e2b8540766037e13f3eb1e6d4d64eea7b46 (diff) | |
download | forums-59929669f508f06b2440bf36af463851acbeb711.tar forums-59929669f508f06b2440bf36af463851acbeb711.tar.gz forums-59929669f508f06b2440bf36af463851acbeb711.tar.bz2 forums-59929669f508f06b2440bf36af463851acbeb711.tar.xz forums-59929669f508f06b2440bf36af463851acbeb711.zip |
[feature/auth-refactor] Fix errors in acp_board
Fixes errors introduced by the last several commits.
PHPBB3-9734
-rw-r--r-- | phpBB/includes/acp/acp_board.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_board.php b/phpBB/includes/acp/acp_board.php index 5e8efaa60c..4a758207fd 100644 --- a/phpBB/includes/acp/acp_board.php +++ b/phpBB/includes/acp/acp_board.php @@ -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'); |