aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2023-06-02 08:53:05 -0100
committerMaxence Lange <maxence@artificial-owl.com>2023-06-02 08:53:05 -0100
commitccb62702419e5a3823d3575569c9cc736ad77ddc (patch)
treeb78748139d1a8fb4100b67ad8446a4ea0f14d455
parent09c5f997c6d185d8b23b37a996e7a1130a426d75 (diff)
downloadnextcloud-server-fox/noid/extended-auth-on-webdav.tar.gz
nextcloud-server-fox/noid/extended-auth-on-webdav.zip
load extended_authentication on webdavfox/noid/extended-auth-on-webdav
-rw-r--r--apps/dav/appinfo/v1/publicwebdav.php6
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();