summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
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" : "";