From 0868ff9d6495151a7cc25db541915943aefcd740 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 7 Jan 2021 11:18:02 +0300 Subject: [PATCH] auth_remote: use empty() instead of isset() while checking headers --- plugins/auth_remote/init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/auth_remote/init.php b/plugins/auth_remote/init.php index 8e364f334..7635080a0 100644 --- a/plugins/auth_remote/init.php +++ b/plugins/auth_remote/init.php @@ -44,7 +44,7 @@ class Auth_Remote extends Plugin implements IAuthModule { $try_login = ""; foreach (["REMOTE_USER", "HTTP_REMOTE_USER", "REDIRECT_REMOTE_USER", "PHP_AUTH_USER"] as $hdr) { - if (isset($_SERVER[$hdr])) { + if (!empty($_SERVER[$hdr])) { $try_login = $_SERVER[$hdr]; break; }