Browse Source

Move authentication to it's own call

remotes/origin/ldap_group_count
Lukas Reschke 12 years ago
committed by Thomas Müller
parent
commit
7c4abce373
  1. 3
      lib/base.php
  2. 3
      public.php
  3. 3
      remote.php

3
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'));
}
}

3
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);

3
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':

Loading…
Cancel
Save