1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-12-02 14:24:10 +01:00

Contacts: Space after comma

This commit is contained in:
Thomas Tanghus 2012-11-26 20:35:37 +01:00
parent 36556134f4
commit 5abe44120d

View File

@ -127,7 +127,7 @@ class VCard {
* @param string $uri the uri ('filename') * @param string $uri the uri ('filename')
* @return associative array or false. * @return associative array or false.
*/ */
public static function findWhereDAVDataIs($aid,$uri) { public static function findWhereDAVDataIs($aid, $uri) {
try { try {
$stmt = \OCP\DB::prepare( 'SELECT * FROM `*PREFIX*contacts_cards` WHERE `addressbookid` = ? AND `uri` = ?' ); $stmt = \OCP\DB::prepare( 'SELECT * FROM `*PREFIX*contacts_cards` WHERE `addressbookid` = ? AND `uri` = ?' );
$result = $stmt->execute(array($aid,$uri)); $result = $stmt->execute(array($aid,$uri));