1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-02-07 01:54:16 +01:00

Contacts: remove stray semi-colon

This commit is contained in:
Thomas Tanghus 2013-03-15 17:03:43 +01:00
parent 5b08c7fcdc
commit 8c1d04edac

View File

@ -187,7 +187,7 @@ Class Properties {
public static function updateIndex($contactid, $vcard = null) { public static function updateIndex($contactid, $vcard = null) {
if(!isset(self::$deleteindexstmt)) { if(!isset(self::$deleteindexstmt)) {
self::$deleteindexstmt self::$deleteindexstmt
= \OCP\DB::prepare('DELETE FROM `*PREFIX*contacts_cards_properties`'; = \OCP\DB::prepare('DELETE FROM `*PREFIX*contacts_cards_properties`'
. ' WHERE `contactid` = ?'); . ' WHERE `contactid` = ?');
} }
try { try {