summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-03-06 20:02:06 +0300
committerAndrew Dolgov <[email protected]>2019-03-06 20:02:06 +0300
commit0b74db5ad7b3b93cf97b7fa65b467f929f6b232f (patch)
tree3f4a22fe3dd73ee030e98fe14457e9f48b7d3b6e /update.php
parent0881d0a00d8941a245b9541a880b5d408ad769f4 (diff)
remove feedbrowser (other feeds)
Diffstat (limited to 'update.php')
-rwxr-xr-xupdate.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/update.php b/update.php
index 21aa09d01..1dc2efd91 100755
--- a/update.php
+++ b/update.php
@@ -22,7 +22,6 @@
init_plugins();
$longopts = array("feeds",
- "feedbrowser",
"daemon",
"daemon-loop",
"task:",
@@ -78,7 +77,6 @@
print "Tiny Tiny RSS data update script.\n\n";
print "Options:\n";
print " --feeds - update feeds\n";
- print " --feedbrowser - update feedbrowser\n";
print " --daemon - start single-process update daemon\n";
print " --task N - create lockfile using this task id\n";
print " --cleanup-tags - perform tags table maintenance\n";
@@ -181,11 +179,6 @@
PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, "hook_update_task", $op);
}
- if (isset($options["feedbrowser"])) {
- $count = RSSUtils::update_feedbrowser_cache();
- print "Finished, $count feeds processed.\n";
- }
-
if (isset($options["daemon"])) {
while (true) {
$quiet = (isset($options["quiet"])) ? "--quiet" : "";