[Pkg-owncloud-commits] [php-sabredav] 87/163: case sensitivity for getAddressBooksForUser

David Prévot taffit at moszumanska.debian.org
Tue May 20 18:54:57 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to annotated tag upstream/2.0.0_beta1
in repository php-sabredav.

commit 478edd0a700277dad869c7a11ddf99e939f64f3c
Author: Armin Hackmann <armin at fruux.com>
Date:   Thu Apr 24 18:59:13 2014 +0200

    case sensitivity for getAddressBooksForUser
---
 lib/Sabre/CardDAV/Backend/BackendInterface.php | 4 ++--
 lib/Sabre/CardDAV/Backend/PDO.php              | 4 ++--
 lib/Sabre/CardDAV/UserAddressBooks.php         | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/lib/Sabre/CardDAV/Backend/BackendInterface.php b/lib/Sabre/CardDAV/Backend/BackendInterface.php
index 8dd9e52..0045155 100644
--- a/lib/Sabre/CardDAV/Backend/BackendInterface.php
+++ b/lib/Sabre/CardDAV/Backend/BackendInterface.php
@@ -125,7 +125,7 @@ interface BackendInterface {
      * Creates a new card.
      *
      * The addressbook id will be passed as the first argument. This is the
-     * same id as it is returned from the getAddressbooksForUser method.
+     * same id as it is returned from the getAddressBooksForUser method.
      *
      * The cardUri is a base uri, and doesn't include the full path. The
      * cardData argument is the vcard body, and is passed as a string.
@@ -152,7 +152,7 @@ interface BackendInterface {
      * Updates a card.
      *
      * The addressbook id will be passed as the first argument. This is the
-     * same id as it is returned from the getAddressbooksForUser method.
+     * same id as it is returned from the getAddressBooksForUser method.
      *
      * The cardUri is a base uri, and doesn't include the full path. The
      * cardData argument is the vcard body, and is passed as a string.
diff --git a/lib/Sabre/CardDAV/Backend/PDO.php b/lib/Sabre/CardDAV/Backend/PDO.php
index 2aeac9f..893df57 100644
--- a/lib/Sabre/CardDAV/Backend/PDO.php
+++ b/lib/Sabre/CardDAV/Backend/PDO.php
@@ -295,7 +295,7 @@ class PDO extends AbstractBackend implements SyncSupport {
      * Creates a new card.
      *
      * The addressbook id will be passed as the first argument. This is the
-     * same id as it is returned from the getAddressbooksForUser method.
+     * same id as it is returned from the getAddressBooksForUser method.
      *
      * The cardUri is a base uri, and doesn't include the full path. The
      * cardData argument is the vcard body, and is passed as a string.
@@ -332,7 +332,7 @@ class PDO extends AbstractBackend implements SyncSupport {
      * Updates a card.
      *
      * The addressbook id will be passed as the first argument. This is the
-     * same id as it is returned from the getAddressbooksForUser method.
+     * same id as it is returned from the getAddressBooksForUser method.
      *
      * The cardUri is a base uri, and doesn't include the full path. The
      * cardData argument is the vcard body, and is passed as a string.
diff --git a/lib/Sabre/CardDAV/UserAddressBooks.php b/lib/Sabre/CardDAV/UserAddressBooks.php
index f840ae4..74c1359 100644
--- a/lib/Sabre/CardDAV/UserAddressBooks.php
+++ b/lib/Sabre/CardDAV/UserAddressBooks.php
@@ -145,7 +145,7 @@ class UserAddressBooks extends DAV\Collection implements DAV\IExtendedCollection
      */
     public function getChildren() {
 
-        $addressbooks = $this->carddavBackend->getAddressbooksForUser($this->principalUri);
+        $addressbooks = $this->carddavBackend->getAddressBooksForUser($this->principalUri);
         $objs = array();
         foreach($addressbooks as $addressbook) {
             $objs[] = new AddressBook($this->carddavBackend, $addressbook);

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/php-sabredav.git



More information about the Pkg-owncloud-commits mailing list