summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-01-12 22:55:43 +0100
committerThomas Tanghus <thomas@tanghus.net>2012-01-12 22:55:43 +0100
commit16973470457b31398c3a8b582e04b587e5b9862a (patch)
tree9844235bcc2c267f8e6ea7ed0d9661acac1f348c
parente60860148cbe9e97cd898712b63302da3df82ed0 (diff)
downloadnextcloud-server-16973470457b31398c3a8b582e04b587e5b9862a.tar.gz
nextcloud-server-16973470457b31398c3a8b582e04b587e5b9862a.zip
Oops. Missing ')' :-P
-rw-r--r--apps/contacts/index.php2
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);
}
}