From 60e3b563e26478eab257413b5cac9b3f619570ac Mon Sep 17 00:00:00 2001
From: Arthur Schiwon <blizzz@owncloud.com>
Date: Wed, 4 Apr 2012 12:41:32 +0200
Subject: [PATCH] webdav needs to load authentication apps

---
 apps/user_ldap/appinfo/info.xml   | 3 +++
 apps/user_openid/appinfo/info.xml | 3 +++
 files/webdav.php                  | 2 +-
 3 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/apps/user_ldap/appinfo/info.xml b/apps/user_ldap/appinfo/info.xml
index 9a6ee1436f..99830dd1ff 100644
--- a/apps/user_ldap/appinfo/info.xml
+++ b/apps/user_ldap/appinfo/info.xml
@@ -7,4 +7,7 @@
 	<licence>AGPL</licence>
 	<author>Dominik Schmidt</author>
 	<require>2</require>
+	<types>
+		<authentication/>
+	</types>
 </info>
diff --git a/apps/user_openid/appinfo/info.xml b/apps/user_openid/appinfo/info.xml
index 37be15abfd..721db1877e 100644
--- a/apps/user_openid/appinfo/info.xml
+++ b/apps/user_openid/appinfo/info.xml
@@ -7,4 +7,7 @@
 	<licence>AGPL</licence>
 	<author>Robin Appelman</author>
 	<require>2</require>
+	<types>
+		<authentication/>
+	</types>
 </info>
diff --git a/files/webdav.php b/files/webdav.php
index 1120973787..25e3302447 100644
--- a/files/webdav.php
+++ b/files/webdav.php
@@ -27,7 +27,7 @@
 $RUNTIME_NOSETUPFS = true;
 
 // only need filesystem apps
-$RUNTIME_APPTYPES=array('filesystem');
+$RUNTIME_APPTYPES=array('filesystem','authentication');
 
 require_once('../lib/base.php');
 
-- 
GitLab