summaryrefslogtreecommitdiffstats
path: root/service
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-07-24 12:40:56 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2015-07-24 12:43:14 +0200
commit360d0bdeed92186288afd0595cb968fa52aa42a5 (patch)
tree98b0af2224d03528cb350b778badd658c591a8f9 /service
parent9facd28e2340a4eaa3ae72b9d6120ed475cb6060 (diff)
fix #828 also warn when webcron is disabled
Diffstat (limited to 'service')
-rw-r--r--service/statusservice.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/statusservice.php b/service/statusservice.php
index b578dd7c5..2273d5a98 100644
--- a/service/statusservice.php
+++ b/service/statusservice.php
@@ -43,7 +43,7 @@ class StatusService {
$cronOn = $this->config->getUseCronUpdates();
// check for cron modes which may lead to problems
- if ($cronMode !== 'cron' && $cronMode !== 'webcron' && $cronOn) {
+ if ($cronMode !== 'cron' && $cronOn) {
$improperlyConfiguredCron = true;
}