summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-02-11 21:09:51 +0100
committerBart Visscher <bartv@thisnet.nl>2012-02-11 21:09:51 +0100
commitb5418173e51c271c042cf2df6da40bf75fe98919 (patch)
tree05a8f7fbbf51d8e7c45b8b606e22436b2e968977 /apps
parent1d6b4f8f3c2872b25ded28553925dd35ebd82997 (diff)
downloadnextcloud-server-b5418173e51c271c042cf2df6da40bf75fe98919.tar.gz
nextcloud-server-b5418173e51c271c042cf2df6da40bf75fe98919.zip
Derive the user principles from the owncloud users
The code for updating the principles table is still there. To make it easier to revert this commit if that is necessary.
Diffstat (limited to 'apps')
-rw-r--r--apps/calendar/caldav.php2
-rw-r--r--apps/contacts/carddav.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/calendar/caldav.php b/apps/calendar/caldav.php
index b581274398d..db0b35da118 100644
--- a/apps/calendar/caldav.php
+++ b/apps/calendar/caldav.php
@@ -19,7 +19,7 @@ $caldavBackend = new OC_Connector_Sabre_CalDAV();
// Root nodes
$nodes = array(
- new Sabre_DAVACL_PrincipalCollection($principalBackend),
+ new Sabre_CalDAV_Principal_Collection($principalBackend),
new Sabre_CalDAV_CalendarRootNode($principalBackend, $caldavBackend),
);
diff --git a/apps/contacts/carddav.php b/apps/contacts/carddav.php
index df7c858b1a0..a2bf492e206 100644
--- a/apps/contacts/carddav.php
+++ b/apps/contacts/carddav.php
@@ -33,7 +33,7 @@ $carddavBackend = new OC_Connector_Sabre_CardDAV();
// Root nodes
$nodes = array(
- new Sabre_DAVACL_PrincipalCollection($principalBackend),
+ new Sabre_CalDAV_Principal_Collection($principalBackend),
new Sabre_CardDAV_AddressBookRoot($principalBackend, $carddavBackend),
);