return empty array instead of 0

This commit is contained in:
Georg Ehrke 2013-07-15 16:58:30 +02:00
parent f2639d6269
commit 63791e2d8d
1 changed files with 1 additions and 1 deletions

View File

@ -121,6 +121,6 @@ class OC_Connector_Sabre_Principal implements Sabre_DAVACL_IPrincipalBackend {
}
function searchPrincipals($prefixPath, array $searchProperties) {
return 0;
return array();
}
}