diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-08-16 20:55:38 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-08-17 09:45:11 +0200 |
commit | 1c38a83927ba318b1ef5115c0fe2fda0cdb5e454 (patch) | |
tree | 6d2ce15eb24ffb1debefe5236bb69ce01763a08c /cron.php | |
parent | f0eb882c2e72e1c855ec3ddc0dfe87936babbd76 (diff) | |
download | nextcloud-server-1c38a83927ba318b1ef5115c0fe2fda0cdb5e454.tar.gz nextcloud-server-1c38a83927ba318b1ef5115c0fe2fda0cdb5e454.zip |
Always log cron execution
There was a setting to disable the last execution of cron. There is no known
problem with this write access and it was also questioned when this feature
was build in https://github.com/owncloud/core/pull/7689#issuecomment-38264707
Recently there was also a bug report about a non-visible last cron execution
(#6088) - let's better remove this.
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'cron.php')
-rw-r--r-- | cron.php | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -152,9 +152,7 @@ try { } // Log the successful cron execution - if (\OC::$server->getConfig()->getSystemValue('cron_log', true)) { - \OC::$server->getConfig()->setAppValue('core', 'lastcron', time()); - } + \OC::$server->getConfig()->setAppValue('core', 'lastcron', time()); exit(); } catch (Exception $ex) { |