Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-02-18 20:17:08 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-02-18 20:17:08 +0400
commite139f7c863d5971a6386070148496cb0f70ad04e (patch)
tree0841de5577ad3d267c3b3672cfb95065a38d8c16 /cron.php
parent8f5c641cd854d27abc876db8dda4ec0025981186 (diff)
load all apps to get all cron jobs executed
Diffstat (limited to 'cron.php')
-rw-r--r--cron.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/cron.php b/cron.php
index 0d2c07b2d95..1065a700288 100644
--- a/cron.php
+++ b/cron.php
@@ -48,6 +48,9 @@ try {
require_once 'lib/base.php';
+ // load all apps to get all api routes properly setup
+ OC_App::loadApps();
+
session_write_close();
$logger = \OC_Log::$object;