]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Use site's name for basic auth realm
authorZach Copley <zach@status.net>
Mon, 12 Oct 2009 22:12:20 +0000 (15:12 -0700)
committerZach Copley <zach@status.net>
Mon, 12 Oct 2009 22:12:20 +0000 (15:12 -0700)
lib/apiauth.php

index 25bbae24e53dfaf2c75e1eacdc37113792e6f17f..4e5e0ccd997b4a5abcdf658cda1281078ad0c345 100644 (file)
@@ -31,7 +31,7 @@ if (!defined('STATUSNET')) {
     exit(1);
 }
 
-require_once INSTALLDIR.'/lib/api.php';
+require_once INSTALLDIR . '/lib/api.php';
 
 /**
  * Actions extending this class will require auth
@@ -90,8 +90,10 @@ class ApiAuthAction extends ApiAction
     {
         $this->basicAuthProcessHeader();
 
+        $realm = common_config('site', 'name') . ' API';
+
         if (!isset($this->auth_user)) {
-            header('WWW-Authenticate: Basic realm="StatusNet API"');
+            header('WWW-Authenticate: Basic realm="' . $realm . '"');
 
             // show error if the user clicks 'cancel'