1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 01:25:56 +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

@@ -23,15 +23,12 @@
function_exists("ob_gzhandler")) {
ob_start("ob_gzhandler");
} else {
ob_start();
}
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
$session_expire = SESSION_EXPIRE_TIME; //seconds
$session_name = (!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid_api" : TTRSS_SESSION_NAME . "_api";
session_name($session_name);
$input = file_get_contents("php://input");
if (defined('_API_DEBUG_HTTP_ENABLED') && _API_DEBUG_HTTP_ENABLED) {
@@ -70,4 +67,7 @@
db_close($link);
header("Api-Content-Length: " . ob_get_length());
ob_end_flush();
?>