diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-06-26 16:06:31 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-06-26 16:06:52 +0200 |
commit | 46e93168cdacdf49552f39a548d99a4a04f6ca30 (patch) | |
tree | 78d505d6666c4961bf6f854e2e8b281cb39165f5 /apps/contacts/lib | |
parent | b9ce4e1f406f1ee57d58b409c368a89aa9ddde9a (diff) | |
download | nextcloud-server-46e93168cdacdf49552f39a548d99a4a04f6ca30.tar.gz nextcloud-server-46e93168cdacdf49552f39a548d99a4a04f6ca30.zip |
Fix variable name.
Diffstat (limited to 'apps/contacts/lib')
-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 0f3a08844b1..22c546b2c4c 100644 --- a/apps/contacts/lib/vcard.php +++ b/apps/contacts/lib/vcard.php @@ -403,7 +403,7 @@ class OC_Contacts_VCard{ */ public static function deleteFromDAVData($aid,$uri){ // FIXME: Add error checking. Deleting a card gives an Kontact/Akonadi error. - OC_Hook::emit('OC_Contacts_VCard', 'pre_deleteVCard', array('aid' => $aid, 'id' => null, 'uri' => $uid)); + OC_Hook::emit('OC_Contacts_VCard', 'pre_deleteVCard', array('aid' => $aid, 'id' => null, 'uri' => $uri)); $stmt = OCP\DB::prepare( 'DELETE FROM *PREFIX*contacts_cards WHERE addressbookid = ? AND uri=?' ); $stmt->execute(array($aid,$uri)); OC_Contacts_Addressbook::touch($aid); |