From 16973470457b31398c3a8b582e04b587e5b9862a Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Thu, 12 Jan 2012 22:55:43 +0100 Subject: [PATCH] Oops. Missing ')' :-P --- apps/contacts/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/contacts/index.php b/apps/contacts/index.php index b179d9bbfe..9012e5d8af 100644 --- a/apps/contacts/index.php +++ b/apps/contacts/index.php @@ -51,7 +51,7 @@ $vcard = null; $details = null; if(!is_null($id)) { $vcard = OC_Contacts_App::getContactVCard($id); - if(!is_null($vcard) { + if(!is_null($vcard)) { $details = OC_Contacts_VCard::structureContact($vcard); } }