diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-01-12 22:55:43 +0100 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-01-12 22:55:43 +0100 |
commit | 16973470457b31398c3a8b582e04b587e5b9862a (patch) | |
tree | 9844235bcc2c267f8e6ea7ed0d9661acac1f348c | |
parent | e60860148cbe9e97cd898712b63302da3df82ed0 (diff) | |
download | nextcloud-server-16973470457b31398c3a8b582e04b587e5b9862a.tar.gz nextcloud-server-16973470457b31398c3a8b582e04b587e5b9862a.zip |
Oops. Missing ')' :-P
-rw-r--r-- | apps/contacts/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/index.php b/apps/contacts/index.php index b179d9bbfe5..9012e5d8af8 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); } } |