aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/auth/provider_interface.php
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-06-19 14:57:11 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-06-19 15:02:34 -0400
commit2445766b922d2dd2d52becb6471a83f174eebec6 (patch)
tree19cc9910ae0e66da603f2971110539177bc7aff7 /phpBB/includes/auth/provider_interface.php
parent553c300688818c36acc4d579762b3eb428d27321 (diff)
downloadforums-2445766b922d2dd2d52becb6471a83f174eebec6.tar
forums-2445766b922d2dd2d52becb6471a83f174eebec6.tar.gz
forums-2445766b922d2dd2d52becb6471a83f174eebec6.tar.bz2
forums-2445766b922d2dd2d52becb6471a83f174eebec6.tar.xz
forums-2445766b922d2dd2d52becb6471a83f174eebec6.zip
[feature/auth-refactor] Refactor acp_board for new auth interface
Partially refactors acp_board for the new authentication interface. Leaves some questionable if statements in the file. Modifies the interface to correctly impletment the acp() method. Modifies each provider to comply with the above mentioned interface modification. PHPBB3-9734
Diffstat (limited to 'phpBB/includes/auth/provider_interface.php')
-rw-r--r--phpBB/includes/auth/provider_interface.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/auth/provider_interface.php b/phpBB/includes/auth/provider_interface.php
index 3dd1dba9be..a789dccce7 100644
--- a/phpBB/includes/auth/provider_interface.php
+++ b/phpBB/includes/auth/provider_interface.php
@@ -58,5 +58,5 @@ 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.
*/
- public function acp();
+ public function acp($new);
}