From d7e4304992b37ff13a4059ccbe0e85856f4f9de0 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 15 Jan 2023 02:09:55 +0100 Subject: [PATCH] Try to fix social network inks in vcard --- htdocs/core/class/vcard.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/vcard.class.php b/htdocs/core/class/vcard.class.php index a5e1cbf6814..f6c8d14979b 100644 --- a/htdocs/core/class/vcard.class.php +++ b/htdocs/core/class/vcard.class.php @@ -441,7 +441,7 @@ class vCard } } if ($urlsn) { - $this->properties["socialProfile;type=".$key] = $urlsn; + $this->properties["SOCIALPROFILE;TYPE=home"] = $key.':'.$urlsn; } } }