Auth: allow public access to set_user() method
This commit is contained in:
parent
a343cfa9c7
commit
9999f46c78
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ class Auth {
|
||||||
* @param string $method Method used to authenticate the user
|
* @param string $method Method used to authenticate the user
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
private static function set_user($user, $method) {
|
public static function set_user($user, $method) {
|
||||||
Log :: debug(
|
Log :: debug(
|
||||||
'User %s authenticated using method %s and backend %s',
|
'User %s authenticated using method %s and backend %s',
|
||||||
$user->username, $method, $user->backend);
|
$user->username, $method, $user->backend);
|
||||||
|
|
Loading…
Reference in a new issue