diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2014-06-16 13:12:21 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-06-16 13:12:21 +0200 |
commit | 7b704eeb5e2a545ff031ac33287750484769a054 (patch) | |
tree | 4106157485c7c922d76c564c3f53b40305319b6e /lib/base.php | |
parent | a48bcceb237295386e9e598caf25161d6d305453 (diff) | |
download | nextcloud-server-7b704eeb5e2a545ff031ac33287750484769a054.tar.gz nextcloud-server-7b704eeb5e2a545ff031ac33287750484769a054.zip |
Load fundamental apps, before any possible customizing app may follow
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/base.php b/lib/base.php index 5871ecba839..963fb4c5585 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(); |