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:
authorLukas Reschke <lukas@statuscode.ch>2014-05-28 23:43:48 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-06-05 13:45:45 +0400
commit7c4abce37377ad3f0931c601ac01b277ac542f2d (patch)
treee97f1027b4b4f773181466512b04a2c88c584b60 /remote.php
parentac7fb1b23e40e3075535ed5d4188219580b2386a (diff)
Move authentication to it's own call
Diffstat (limited to 'remote.php')
-rw-r--r--remote.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/remote.php b/remote.php
index 6a069ed4605..232e47ee402 100644
--- a/remote.php
+++ b/remote.php
@@ -26,7 +26,8 @@ try {
// Load all required applications
\OC::$REQUESTEDAPP = $app;
- OC_App::loadApps(array('authentication', 'filesystem', 'logging'));
+ OC_App::loadApps(array('authentication'));
+ OC_App::loadApps(array('filesystem', 'logging'));
switch ($app) {
case 'core':