summaryrefslogtreecommitdiffstats
path: root/apps/user_webdavauth/user_webdavauth.php
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2012-11-05 14:22:16 +0100
committerFrank Karlitschek <frank@owncloud.org>2012-11-05 14:22:16 +0100
commit6fba4ba87d5a16eb61337062cd7a6b9fa51f7682 (patch)
treea8f6775e22bbfadc93e8dd17cf5e1c46d0f1fef5 /apps/user_webdavauth/user_webdavauth.php
parent01b0e9b133279ec6c68e7fca6c8ae35c35f82941 (diff)
downloadnextcloud-server-6fba4ba87d5a16eb61337062cd7a6b9fa51f7682.tar.gz
nextcloud-server-6fba4ba87d5a16eb61337062cd7a6b9fa51f7682.zip
fix the webdavauth app
Diffstat (limited to 'apps/user_webdavauth/user_webdavauth.php')
-rwxr-xr-xapps/user_webdavauth/user_webdavauth.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/user_webdavauth/user_webdavauth.php b/apps/user_webdavauth/user_webdavauth.php
index 2af8e9f103d..0b0be7c2fa1 100755
--- a/apps/user_webdavauth/user_webdavauth.php
+++ b/apps/user_webdavauth/user_webdavauth.php
@@ -67,10 +67,11 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend {
/*
* we don´t know if a user exists without the password. so we have to return false all the time
*/
- public function userExists( $uid ) {
- return false;
+ public function userExists( $uid ){
+ return true;
}
+
/*
* we don´t know the users so all we can do it return an empty array here
*/