fix auth_remote broken by previous commit
This commit is contained in:
parent
8a34084df1
commit
dc40f69511
|
@ -45,7 +45,7 @@ class Auth_Remote extends Plugin implements IAuthModule {
|
|||
|
||||
foreach (["REMOTE_USER", "HTTP_REMOTE_USER", "REDIRECT_REMOTE_USER", "PHP_AUTH_USER"] as $hdr) {
|
||||
if (isset($_SERVER[$hdr])) {
|
||||
$try_login = $_SERVER["hdr"];
|
||||
$try_login = $_SERVER[$hdr];
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue