diff options
| author | Joseph Warner <hardolaf@hardolaf.com> | 2013-06-18 15:39:51 -0400 |
|---|---|---|
| committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-06-18 15:41:07 -0400 |
| commit | 57689948e252ef3240b2c20be95923d6a0635ca9 (patch) | |
| tree | dd1399096ef844470a30ceecad17f07acb41e9f3 /phpBB/includes | |
| parent | db27a8c67a9730384a912298a85a7bf38e506d7d (diff) | |
| download | forums-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.php | 2 |
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; |
