Skip to content
Snippets Groups Projects
Commit 7c4abce3 authored by Lukas Reschke's avatar Lukas Reschke Committed by Thomas Müller
Browse files

Move authentication to it's own call

parent ac7fb1b2
No related branches found
No related tags found
No related merge requests found
......@@ -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'));
}
}
......
......@@ -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);
......
......@@ -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':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment