aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_board.php
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-07-08 14:02:53 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-07-11 15:49:45 -0400
commit60100b62f35cde7f5beafefbe9ff1a10ee81faa4 (patch)
tree68592bc6236f29d8be39b2eb02bbc8a3bc27ac32 /phpBB/includes/acp/acp_board.php
parent29b472c2e5c8a878b592c53733cc57961d60a0af (diff)
downloadforums-60100b62f35cde7f5beafefbe9ff1a10ee81faa4.tar
forums-60100b62f35cde7f5beafefbe9ff1a10ee81faa4.tar.gz
forums-60100b62f35cde7f5beafefbe9ff1a10ee81faa4.tar.bz2
forums-60100b62f35cde7f5beafefbe9ff1a10ee81faa4.tar.xz
forums-60100b62f35cde7f5beafefbe9ff1a10ee81faa4.zip
[ticket/11626] Change interface to match functionality
Changes the interface so that it matches the new functionality of phpbb_provider_auth_interface::acp(). PHPBB3-11626
Diffstat (limited to 'phpBB/includes/acp/acp_board.php')
-rw-r--r--phpBB/includes/acp/acp_board.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_board.php b/phpBB/includes/acp/acp_board.php
index 4c5f951bdc..f01963c2ce 100644
--- a/phpBB/includes/acp/acp_board.php
+++ b/phpBB/includes/acp/acp_board.php
@@ -528,10 +528,10 @@ class acp_board
$old_auth_config = array();
foreach ($auth_providers as $provider)
{
- if ($fields = $provider->acp($this->new_config))
+ if ($fields = $provider->acp())
{
// Check if we need to create config fields for this plugin and save config when submit was pressed
- foreach ($fields['config'] as $field)
+ foreach ($fields as $field)
{
if (!isset($config[$field]))
{