Commit 847979a9 authored by skummer's avatar skummer

ZP-139

- fix: strtolower() applied on user+domain string

git-svn-id: https://z-push.org/svn/z-push/trunk@1382 b7dd7b3b-3a3c-0410-9da9-bee62a6cc5b5
parent cc414f10
......@@ -169,7 +169,7 @@ class Request {
// in base64 encoded query string user is not necessarily set
if (!isset(self::$getUser) && isset($_SERVER['PHP_AUTH_USER']))
list(self::$getUser,) = strtolower(Utils::SplitDomainUser($_SERVER['PHP_AUTH_USER']));
list(self::$getUser,) = Utils::SplitDomainUser(strtolower($_SERVER['PHP_AUTH_USER']));
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment