[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
This commit is contained in:
Joseph Warner 2013-06-18 15:39:51 -04:00
parent db27a8c67a
commit 57689948e2

View file

@ -43,7 +43,7 @@ class phpbb_auth_provider_apache implements phpbb_auth_provider_interface
/** /**
* Login function * Login function
*/ */
public function login(&$username, &$password) public function login($username, $password)
{ {
global $db, $request; global $db, $request;