--- webserver_auth.module.orig 2008-03-10 17:43:42.000000000 -0400 +++ webserver_auth.module 2008-03-28 15:39:10.000000000 -0400 @@ -64,7 +71,7 @@ $account->name = trim($account->name); // pretties up the username for NTLM authentication (i.e. Windows) - if ($_SERVER["AUTH_TYPE"] == "NTLM" || $_SERVER["AUTH_TYPE"] == 'Negotiate') { + if ($_SERVER["AUTH_TYPE"] == "NTLM" || $_SERVER["AUTH_TYPE"] == 'Negotiate' || $_SERVER["AUTH_TYPE"] == "Basic") { if (!(strpos($account->name, "\\") === false)) { $account->name = substr($account->name, strrpos($account->name, "\\")+1); }