]> git.wh0rd.org - tt-rss.git/blobdiff - update.php
split rss updating stuff into separate include file
[tt-rss.git] / update.php
index 7b17c60f894d3c2249ea5fe4eecd21dd0cfc50a2..8cca3daa0937b0ae3de0c0c3897dc260283be857 100755 (executable)
@@ -1,10 +1,13 @@
 #!/usr/bin/php
 <?php
+       set_include_path(get_include_path() . PATH_SEPARATOR . "include");
+
        define('DISABLE_SESSIONS', true);
 
        chdir(dirname(__FILE__));
 
        require_once "functions.php";
+       require_once "rssfuncs.php";
        require_once "sanity_check.php";
        require_once "config.php";
        require_once "db.php";
        // Create a database connection.
        $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
 
-       if (!$link) {
-               if (DB_TYPE == "mysql") {
-                       print mysql_error();
-               }
-               // PG seems to display its own errors just fine by default.
-               return;
-       }
-
        init_connection($link);
 
        if ($op == "-feeds") {
        }
 
        db_close($link);
-       
+
        if ($lock_handle != false) {
                fclose($lock_handle);
        }