mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 21:38:54 +00: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:
parent
db27a8c67a
commit
57689948e2
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue