diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-08 14:02:53 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-11 15:49:45 -0400 |
commit | 60100b62f35cde7f5beafefbe9ff1a10ee81faa4 (patch) | |
tree | 68592bc6236f29d8be39b2eb02bbc8a3bc27ac32 /phpBB/includes/auth/provider/interface.php | |
parent | 29b472c2e5c8a878b592c53733cc57961d60a0af (diff) | |
download | forums-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/auth/provider/interface.php')
-rw-r--r-- | phpBB/includes/auth/provider/interface.php | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/phpBB/includes/auth/provider/interface.php b/phpBB/includes/auth/provider/interface.php index fe2415ee25..40c48026cf 100644 --- a/phpBB/includes/auth/provider/interface.php +++ b/phpBB/includes/auth/provider/interface.php @@ -60,16 +60,10 @@ interface phpbb_auth_provider_interface * This function is used to output any required fields in the authentication * admin panel. It also defines any required configuration table fields. * - * @param array $new Contains the new configuration values that have - * been set in acp_board. * @return array|null Returns null if not implemented or an array of the - * form: - * array( - * 'tpl' => string - * 'config' => array - * ) + * configuration fields of the provider. */ - public function acp($new); + public function acp(); /** * This function updates the template with variables related to the acp |