From d8c600636c8738aae37eb23e45d9cb9a7d388058 Mon Sep 17 00:00:00 2001 From: AlainRnet Date: Thu, 6 Dec 2018 00:26:54 +0100 Subject: [PATCH] Update vcard.class.php update from vcard 2.1 to vcard 3.0 --- htdocs/core/class/vcard.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/core/class/vcard.class.php b/htdocs/core/class/vcard.class.php index c3dc5547d88..27144c9293a 100644 --- a/htdocs/core/class/vcard.class.php +++ b/htdocs/core/class/vcard.class.php @@ -309,8 +309,8 @@ class vCard function getVCard() { $text = "BEGIN:VCARD\r\n"; - //$text.= "VERSION:3.0\r\n"; - $text.= "VERSION:2.1\r\n"; + $text.= "VERSION:3.0\r\n"; + //$text.= "VERSION:2.1\r\n"; foreach($this->properties as $key => $value) { $text.= "$key:$value\r\n";