api: use text/json content-type

This commit is contained in:
Andrew Dolgov 2013-01-12 12:52:35 +04:00
parent ba946ba276
commit 12f317822d
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ class API extends Handler {
function before($method) {
if (parent::before($method)) {
header("Content-Type: text/plain");
header("Content-Type: text/json");
if (!$_SESSION["uid"] && $method != "login" && $method != "isloggedin") {
print $this->wrap(self::STATUS_ERR, array("error" => 'NOT_LOGGED_IN'));