summaryrefslogtreecommitdiffstats
path: root/cron.php
diff options
context:
space:
mode:
Diffstat (limited to 'cron.php')
-rw-r--r--cron.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/cron.php b/cron.php
index aaa4419c1ce..b79c40d2a72 100644
--- a/cron.php
+++ b/cron.php
@@ -135,7 +135,7 @@ try {
} else {
// We call cron.php from some website
- if ($appMode == 'cron') {
+ if ($appMode === 'cron') {
// Cron is cron :-P
OC_JSON::error(array('data' => array('message' => 'Backgroundjobs are using system cron!')));
} else {
@@ -151,7 +151,7 @@ try {
}
// Log the successful cron execution
- \OC::$server->getConfig()->setAppValue('core', 'lastcron', time());
+ $config->setAppValue('core', 'lastcron', time());
exit();
} catch (Exception $ex) {