From 7c4abce37377ad3f0931c601ac01b277ac542f2d Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Wed, 28 May 2014 21:43:48 +0200 Subject: [PATCH] Move authentication to it's own call --- lib/base.php | 3 ++- public.php | 3 ++- remote.php | 3 ++- 3 files changed, 6 insertions(+), 3 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')); } } diff --git a/public.php b/public.php index 3b48e129d9a..eed63948112 100644 --- a/public.php +++ b/public.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')); OC_Util::checkAppEnabled($app); OC_App::loadApp($app); 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': -- 2.39.5