]> git.wh0rd.org - tt-rss.git/blobdiff - update.php
implement tiny-OOP routing
[tt-rss.git] / update.php
index 92e2ce6ef085c7090180a6286e0b53ae10ebaa6e..e6063a9e829e15b92d5641876a43377be9023535 100755 (executable)
@@ -1,5 +1,7 @@
 #!/usr/bin/php
 <?php
+       set_include_path(get_include_path() . PATH_SEPARATOR . "include");
+
        define('DISABLE_SESSIONS', true);
 
        chdir(dirname(__FILE__));
@@ -68,6 +70,8 @@
 
                $rc = cleanup_tags($link, 14, 50000);
                _debug("Cleaned $rc cached tags.");
+
+               get_linked_feeds($link);
        }
 
        if ($op == "-feedbrowser") {
                        $rc = cleanup_tags($link, 14, 50000);
 
                        _debug("Cleaned $rc cached tags.");
+
+                       get_linked_feeds($link);
                }
 
        }
 
        db_close($link);
 
+       if ($lock_handle != false) {
+               fclose($lock_handle);
+       }
+
        unlink(LOCK_DIRECTORY . "/$lock_filename");
 ?>