mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-19 16:11:21 +02:00
[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:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user