diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-21 15:00:25 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-21 15:00:25 +0100 |
commit | 96e6cb3db4a97a1397dc56d3d1c1a5131e45b972 (patch) | |
tree | 0e32e28e8bf643cc9750e33d8ecc72b66c7d5a78 /lib/base.php | |
parent | 6ff96b34ad0462ad05c34633ccd08236b93bf195 (diff) | |
download | nextcloud-server-96e6cb3db4a97a1397dc56d3d1c1a5131e45b972.tar.gz nextcloud-server-96e6cb3db4a97a1397dc56d3d1c1a5131e45b972.zip |
all authentication apps are loaded at first - everything else relies on these apps
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index d02d9e1d261..40729f05119 100644 --- a/lib/base.php +++ b/lib/base.php @@ -549,7 +549,8 @@ class OC { // Load minimum set of apps - which is filesystem, authentication and logging if (!self::checkUpgrade(false)) { - OC_App::loadApps(array('filesystem', 'authentication', 'logging')); + OC_App::loadApps(array('authentication')); + OC_App::loadApps(array('filesystem', 'logging')); } //setup extra user backends |