X-Git-Url: http://git.pjr.cc/?p=gwvp.git;a=blobdiff_plain;f=gwvplib%2Fgwvpauth.php;h=0cd3212a9fd5c7ff40fab74cc1533361f1dc1c4a;hp=e06fdde79ef81c77d14b17eb2964753518d507a0;hb=1283f0d8043b7aafc4edd1c4627d465a92355a49;hpb=70007a4ed44735f9d9c82fdff2d6600e2fdbfbd9 diff --git a/gwvplib/gwvpauth.php b/gwvplib/gwvpauth.php index e06fdde..0cd3212 100644 --- a/gwvplib/gwvpauth.php +++ b/gwvplib/gwvpauth.php @@ -37,11 +37,8 @@ function gwvp_AuthCallMe() function gwvp_AskForBasicAuth() { - error_log("AUTH: asking for basic auth"); - if(!isset($_SERVER["PHP_AUTH_USER"])) { - header('WWW-Authenticate: Basic realm="My Realm"'); - header('HTTP/1.0 401 Unauthorized'); - } else return; + header('WWW-Authenticate: Basic realm="GIT Repo"'); + header('HTTP/1.1 401 Unauthorized'); } // $levels is checked against $LOGIN_TYPE, levels can be either just "admin" or admin,user anon,user anon, etc. @@ -208,6 +205,8 @@ function gwvp_checkBasicAuthLogin() $auth = gwvp_authUserPass($user, $pass); if($auth !== false) { error_log("auth passes"); + } else { + error_log("auth failes"); } return $auth;