From d0d9dc17212cd8be663cb3759453dbe28bc1ed47 Mon Sep 17 00:00:00 2001 From: Lars Kneschke Date: Wed, 24 Sep 2003 05:44:57 +0000 Subject: [PATCH] patch for [ 807213 ] HTTP-AUTH fails solved by Bernd Oeggl (beoe) --- phpgwapi/inc/class.auth_http.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.auth_http.inc.php b/phpgwapi/inc/class.auth_http.inc.php index 2e267b52fa..3df8e10874 100644 --- a/phpgwapi/inc/class.auth_http.inc.php +++ b/phpgwapi/inc/class.auth_http.inc.php @@ -30,7 +30,7 @@ function authenticate($username, $passwd) { - if (isset($GLOBALS['PHP_AUTH_USER'])) + if (isset($_SERVER['PHP_AUTH_USER'])) { return True; }