]> source.dussan.org Git - nextcloud-server.git/commitdiff
Port DAV groupMemberSet fix to master #4458
authorThomas Tanghus <thomas@tanghus.net>
Sun, 18 Aug 2013 13:53:52 +0000 (15:53 +0200)
committerThomas Tanghus <thomas@tanghus.net>
Sun, 18 Aug 2013 13:54:56 +0000 (15:54 +0200)
lib/connector/sabre/principal.php

index 16c88b96ea6fc4dbcf8b9f941eee48c38836c52e..59a96797c160a0198d9410265b866318c84da9d3 100644 (file)
@@ -66,13 +66,13 @@ class OC_Connector_Sabre_Principal implements Sabre_DAVACL_IPrincipalBackend {
         */
        public function getGroupMemberSet($principal) {
                // TODO: for now the group principal has only one member, the user itself
-               list($prefix, $name) = Sabre_DAV_URLUtil::splitPath($principal);
-
-               $principal = $this->getPrincipalByPath($prefix);
-               if (!$principal) throw new Sabre_DAV_Exception('Principal not found');
+               $principal = $this->getPrincipalByPath($principal);
+               if (!$principal) {
+                       throw new Sabre_DAV_Exception('Principal not found');
+               }
 
                return array(
-                       $prefix
+                       $principal['uri']
                );
        }
 
@@ -88,7 +88,9 @@ class OC_Connector_Sabre_Principal implements Sabre_DAVACL_IPrincipalBackend {
                $group_membership = array();
                if ($prefix == 'principals') {
                        $principal = $this->getPrincipalByPath($principal);
-                       if (!$principal) throw new Sabre_DAV_Exception('Principal not found');
+                       if (!$principal) {
+                               throw new Sabre_DAV_Exception('Principal not found');
+                       }
 
                        // TODO: for now the user principal has only its own groups
                        return array(