]> git.wh0rd.org - tt-rss.git/blobdiff - public.php
remove $link
[tt-rss.git] / public.php
index 8477f95fc8399f1f4959ed635b3c27e750b67e92..fa8ea29b8f4623f9dceb037d6ff5bc49a62c5ee3 100644 (file)
@@ -17,6 +17,7 @@
                $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
        }
 
+       require_once "autoload.php";
        require_once "sessions.php";
        require_once "functions.php";
        require_once "sanity_check.php";
@@ -30,7 +31,7 @@
 
        $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
 
-       if (!init_connection($link)) return;
+       if (!init_plugins()) return;
 
        if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
                ob_start("ob_gzhandler");
@@ -44,7 +45,7 @@
        if ($override) {
                $handler = $override;
        } else {
-               $handler = new Handler_Public($link, $_REQUEST);
+               $handler = new Handler_Public( $_REQUEST);
        }
 
        if (implements_interface($handler, "IHandler") && $handler->before($method)) {
@@ -61,5 +62,5 @@
        print json_encode(array("error" => array("code" => 7)));
 
        // We close the connection to database.
-       db_close($link);
+       db_close();
 ?>