diff options
author | Bart Visscher <bartv@thisnet.nl> | 2011-10-21 21:49:34 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2011-10-21 21:49:58 +0200 |
commit | 61660c068a1d24f3723e4f82573143e2a4d884e8 (patch) | |
tree | 442e1b8becf4068fed1468877a3a16c7aaf613a1 | |
parent | c420001f2b28a619fe844d7366ae3984b38021e9 (diff) | |
download | nextcloud-server-61660c068a1d24f3723e4f82573143e2a4d884e8.tar.gz nextcloud-server-61660c068a1d24f3723e4f82573143e2a4d884e8.zip |
Fix function name error in contacts app
-rw-r--r-- | apps/contacts/lib/vcard.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/lib/vcard.php b/apps/contacts/lib/vcard.php index 9f15cf4bc37..74bc0f92f1b 100644 --- a/apps/contacts/lib/vcard.php +++ b/apps/contacts/lib/vcard.php @@ -231,7 +231,7 @@ class OC_Contacts_VCard{ * @param string $uri the uri of the card * @return boolean */ - public static function deleteCardFromDAVData($aid,$uri){ + public static function deleteFromDAVData($aid,$uri){ $stmt = OC_DB::prepare( 'DELETE FROM *PREFIX*contacts_cards WHERE addressbookid = ? AND uri=?' ); $stmt->execute(array($aid,$uri)); |