]> git.wh0rd.org - tt-rss.git/blobdiff - backend.php
remove $link
[tt-rss.git] / backend.php
index b583d379e46fbbe726655adbfe7698ecb10a7027..b06cca2d24e0dbe6f185ecfc23bd01c0df1b4eb7 100644 (file)
@@ -50,7 +50,7 @@
 
        $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
 
-       if (!init_plugins($link)) return;
+       if (!init_plugins()) return;
 
        header("Content-Type: text/json; charset=utf-8");
 
        }
 
        if (SINGLE_USER_MODE) {
-               authenticate_user($link, "admin", null);
+               authenticate_user( "admin", null);
        }
 
        if ($_SESSION["uid"]) {
-               if (!validate_session($link)) {
+               if (!validate_session()) {
                        header("Content-Type: text/json");
                        print json_encode(array("error" => array("code" => 6)));
                        return;
                }
-               load_user_plugins($link, $_SESSION["uid"]);
+               load_user_plugins( $_SESSION["uid"]);
        }
 
        $purge_intervals = array(
                5 => __("Power User"),
                10 => __("Administrator"));
 
-       #$error = sanity_check($link);
+       #$error = sanity_check();
 
        #if ($error['code'] != 0 && $op != "logout") {
        #       print json_encode(array("error" => $error));
                if ($override) {
                        $handler = $override;
                } else {
-                       $handler = new $op($link, $_REQUEST);
+                       $handler = new $op(Db::get(), $_REQUEST);
                }
 
                if ($handler && implements_interface($handler, 'IHandler')) {
        print json_encode(array("error" => array("code" => 7)));
 
        // We close the connection to database.
-       db_close($link);
+       db_close();
 ?>