]> git.wh0rd.org - tt-rss.git/blobdiff - backend.php
update_rss_feed: bailout if cache is considered valid, but older than last_updated
[tt-rss.git] / backend.php
index e718f8103ebd639428488fab24f7aaf513197c7a..41481a9635f59dbd21f78bc062f1db894ce3bfa2 100644 (file)
 
        startup_gettext();
 
-       $script_started = getmicrotime();
+       $script_started = microtime(true);
 
        $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
 
        if (!init_connection($link)) return;
 
-       header("Content-Type: text/plain; charset=utf-8");
+       header("Content-Type: text/json; charset=utf-8");
 
        if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
                ob_start("ob_gzhandler");
                                        $handler->after();
                                        return;
                                } else {
-                                       header("Content-Type: text/plain");
+                                       header("Content-Type: text/json");
                                        print json_encode(array("error" => array("code" => 6)));
                                        return;
                                }
                        } else {
-                               header("Content-Type: text/plain");
+                               header("Content-Type: text/json");
                                print json_encode(array("error" => array("code" => 6)));
                                return;
                        }
                }
        }
 
-       header("Content-Type: text/plain");
+       header("Content-Type: text/json");
        print json_encode(array("error" => array("code" => 7)));
 
        // We close the connection to database.