diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-02 14:57:28 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-02 14:57:28 +0000 |
commit | 920f836e291705619d992839b2ab8b3447e6e027 (patch) | |
tree | 52f1bad286ff041de52bdf9d4b732ecd27244f52 | |
parent | a21dca2228dee3b19ce65163427c8ad38eb43141 (diff) | |
download | semanticscuttle-920f836e291705619d992839b2ab8b3447e6e027.tar.gz semanticscuttle-920f836e291705619d992839b2ab8b3447e6e027.tar.bz2 |
Interface design: change API name in API login box
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@91 b3834d28-1941-0410-a4f8-b48e95affb8f
-rw-r--r-- | api/httpauth.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/httpauth.inc.php b/api/httpauth.inc.php index bc26582..e33116a 100644 --- a/api/httpauth.inc.php +++ b/api/httpauth.inc.php @@ -3,7 +3,7 @@ // with the user's info. function authenticate() { - header('WWW-Authenticate: Basic realm="del.icio.us API"'); + header('WWW-Authenticate: Basic realm="SemanticScuttle API"'); header('HTTP/1.0 401 Unauthorized'); die("Use of the API calls requires authentication."); } @@ -19,4 +19,4 @@ if (!isset($_SERVER['PHP_AUTH_USER'])) { authenticate(); } } -?>
\ No newline at end of file +?> |