]> source.dussan.org Git - nextcloud-server.git/commitdiff
Move authentication to it's own call
authorLukas Reschke <lukas@statuscode.ch>
Wed, 28 May 2014 19:43:48 +0000 (21:43 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Thu, 5 Jun 2014 09:45:45 +0000 (11:45 +0200)
lib/base.php
public.php
remote.php

index d3f98ab0c1ce285ff53abfff1024214e01bfafca..2ec9c88e9f4f41a2ce13c251691f7a8091a48188 100644 (file)
@@ -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'));
                        }
                }
 
index 3b48e129d9a9ed2e0f6d794e307f5166b0a5d1d7..eed63948112831bb57349da8117f0086edb71470 100644 (file)
@@ -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'));
 
        OC_Util::checkAppEnabled($app);
        OC_App::loadApp($app);
index 6a069ed46059e42e4b5560bbc68a10f48745e99b..232e47ee402864209ae375f417938d34631097f4 100644 (file)
@@ -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':