From 7b704eeb5e2a545ff031ac33287750484769a054 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Mon, 16 Jun 2014 13:12:21 +0200 Subject: [PATCH] Load fundamental apps, before any possible customizing app may follow --- lib/base.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/base.php b/lib/base.php index 5871ecba83..963fb4c558 100644 --- a/lib/base.php +++ b/lib/base.php @@ -696,6 +696,8 @@ class OC { if (!self::$CLI and (!isset($_GET["logout"]) or ($_GET["logout"] !== 'true'))) { try { if (!OC_Config::getValue('maintenance', false) && !self::needUpgrade()) { + OC_App::loadApps(array('authentication')); + OC_App::loadApps(array('filesystem', 'logging')); OC_App::loadApps(); } self::checkSingleUserMode();