diff options
author | Evan Prodromou <evan@status.net> | 2010-03-08 12:36:03 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-03-08 12:36:03 -0500 |
commit | 5f7aa6f2e3c82b9598e3405885eb455bed9b0edc (patch) | |
tree | dbba16221c0d8fa3753e48fe3af3358c4e0cfd09 | |
parent | e5541d09d0776e69cc276a3b3e93abcc42b15e55 (diff) |
make API realm configurable
-rw-r--r-- | lib/apiauth.php | 6 | ||||
-rw-r--r-- | lib/default.php | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lib/apiauth.php b/lib/apiauth.php index 5090871cf..f63c84d8f 100644 --- a/lib/apiauth.php +++ b/lib/apiauth.php @@ -235,7 +235,11 @@ class ApiAuthAction extends ApiAction { $this->basicAuthProcessHeader(); - $realm = common_config('site', 'name') . ' API'; + $realm = common_config('api', 'realm'); + + if (empty($realm)) { + $realm = common_config('site', 'name') . ' API'; + } if (!isset($this->auth_user_nickname) && $required) { header('WWW-Authenticate: Basic realm="' . $realm . '"'); diff --git a/lib/default.php b/lib/default.php index bdd78d4d8..46d3d4774 100644 --- a/lib/default.php +++ b/lib/default.php @@ -293,4 +293,6 @@ $default = array('crawldelay' => 0, 'disallow' => array('main', 'settings', 'admin', 'search', 'message') ), + 'api' => + array('realm' => null), ); |