summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorBarak Korren <[email protected]>2013-04-02 20:38:07 +0300
committerBarak Korren <[email protected]>2013-04-02 20:38:07 +0300
commit58a2577d48790c79adfd44bcfd662c980ce6cfe4 (patch)
tree523d814ea0b7b6f617fe515b186099c6e83fed72 /update.php
parente470a273cf09562fb2f9c0c899002303f19c8d16 (diff)
parentcc332603431102a682feda22b9cf0093a29f0176 (diff)
Merge branch 'master' of https://github.com/gothfox/Tiny-Tiny-RSS.git
Diffstat (limited to 'update.php')
-rwxr-xr-xupdate.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/update.php b/update.php
index 691e168e2..e57aef90f 100755
--- a/update.php
+++ b/update.php
@@ -145,7 +145,9 @@
if (isset($options["daemon"])) {
while (true) {
- passthru(PHP_EXECUTABLE . " " . $argv[0] ." --daemon-loop");
+ $quiet = (isset($options["quiet"])) ? "--quiet" : "";
+
+ passthru(PHP_EXECUTABLE . " " . $argv[0] ." --daemon-loop $quiet");
_debug("Sleeping for " . DAEMON_SLEEP_INTERVAL . " seconds...");
sleep(DAEMON_SLEEP_INTERVAL);
}