aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-06-18 15:39:51 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-06-18 15:41:07 -0400
commit57689948e252ef3240b2c20be95923d6a0635ca9 (patch)
treedd1399096ef844470a30ceecad17f07acb41e9f3 /phpBB/includes
parentdb27a8c67a9730384a912298a85a7bf38e506d7d (diff)
downloadforums-57689948e252ef3240b2c20be95923d6a0635ca9.tar
forums-57689948e252ef3240b2c20be95923d6a0635ca9.tar.gz
forums-57689948e252ef3240b2c20be95923d6a0635ca9.tar.bz2
forums-57689948e252ef3240b2c20be95923d6a0635ca9.tar.xz
forums-57689948e252ef3240b2c20be95923d6a0635ca9.zip
[feature/auth-refactor] Make Apache consistent with interface
Makes the provider_apache consistent with the provider_interface by removing the pass-by-reference of $username and $password. PHPBB3-9734
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/auth/provider_apache.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/auth/provider_apache.php b/phpBB/includes/auth/provider_apache.php
index bb25e502a6..01aa9400fd 100644
--- a/phpBB/includes/auth/provider_apache.php
+++ b/phpBB/includes/auth/provider_apache.php
@@ -43,7 +43,7 @@ class phpbb_auth_provider_apache implements phpbb_auth_provider_interface
/**
* Login function
*/
- public function login(&$username, &$password)
+ public function login($username, $password)
{
global $db, $request;