From 12f317822df08f4a6bb773ad0308f014fea1b6f7 Mon Sep 17 00:00:00 2001
From: Andrew Dolgov <fox@madoka.volgo-balt.ru>
Date: Sat, 12 Jan 2013 12:52:35 +0400
Subject: [PATCH] api: use text/json content-type

---
 classes/api.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/classes/api.php b/classes/api.php
index e3dce0c17..1f50ae37e 100644
--- a/classes/api.php
+++ b/classes/api.php
@@ -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'));
-- 
GitLab