diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-05-28 21:43:48 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-06-05 11:45:45 +0200 |
commit | 7c4abce37377ad3f0931c601ac01b277ac542f2d (patch) | |
tree | e97f1027b4b4f773181466512b04a2c88c584b60 /lib/base.php | |
parent | ac7fb1b23e40e3075535ed5d4188219580b2386a (diff) | |
download | nextcloud-server-7c4abce37377ad3f0931c601ac01b277ac542f2d.tar.gz nextcloud-server-7c4abce37377ad3f0931c601ac01b277ac542f2d.zip |
Move authentication to it's own call
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 d3f98ab0c1c..2ec9c88e9f4 100644 --- a/lib/base.php +++ b/lib/base.php @@ -715,7 +715,8 @@ class OC { OC_App::loadApps(); } else { // For guests: Load only authentication, filesystem and logging - OC_App::loadApps(array('authentication', 'filesystem', 'logging')); + OC_App::loadApps(array('authentication')); + OC_App::loadApps(array('filesystem', 'logging')); } } |