1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 05:31:29 +00:00

api: remove unneeded stuff, add special header for android httpurlconnection which seems to be retarded

This commit is contained in:
Andrew Dolgov
2012-09-19 15:54:55 +04:00
parent 964f153371
commit 839b065860
2 changed files with 6 additions and 6 deletions

View File

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