diff options
-rw-r--r-- | apps/dav/appinfo/v1/publicwebdav.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/dav/appinfo/v1/publicwebdav.php b/apps/dav/appinfo/v1/publicwebdav.php index 5530fc2cc7d..552ed61badb 100644 --- a/apps/dav/appinfo/v1/publicwebdav.php +++ b/apps/dav/appinfo/v1/publicwebdav.php @@ -35,9 +35,9 @@ use OCP\EventDispatcher\IEventDispatcher; use Psr\Log\LoggerInterface; // load needed apps -$RUNTIME_APPTYPES = ['filesystem', 'authentication', 'logging']; - -OC_App::loadApps($RUNTIME_APPTYPES); +OC_App::loadApps(['authentication']); +OC_App::loadApps(['extended_authentication']); +OC_App::loadApps(['filesystem', 'logging']); OC_Util::obEnd(); \OC::$server->getSession()->close(); |