]> source.dussan.org Git - nextcloud-server.git/commitdiff
return empty array instead of 0
authorGeorg Ehrke <developer@georgehrke.com>
Mon, 15 Jul 2013 14:58:30 +0000 (16:58 +0200)
committerGeorg Ehrke <developer@georgehrke.com>
Mon, 15 Jul 2013 14:58:30 +0000 (16:58 +0200)
lib/connector/sabre/principal.php

index 04be410ac85ea44875ea9ad87226d96853a95d4d..16c88b96ea6fc4dbcf8b9f941eee48c38836c52e 100644 (file)
@@ -121,6 +121,6 @@ class OC_Connector_Sabre_Principal implements Sabre_DAVACL_IPrincipalBackend {
        }
 
        function searchPrincipals($prefixPath, array $searchProperties) {
-               return 0;
+               return array();
        }
 }