From 662ec806255b74da16b3af7a8d17db99ca7756f9 Mon Sep 17 00:00:00 2001 From: x2003bruneau Date: Wed, 31 Jan 2007 15:10:35 +0000 Subject: [PATCH] Do not escape ':' in vcards git-svn-id: svn+ssh://murphy/home/svn/platal/trunk@1451 839d8a87-29fc-0310-9880-83ba4fa771e5 --- include/vcard.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/vcard.inc.php b/include/vcard.inc.php index 994ca8d..c2b3db1 100644 --- a/include/vcard.inc.php +++ b/include/vcard.inc.php @@ -41,7 +41,7 @@ class VCard function escape($text) { - return preg_replace('/[,;:]/', '\\\\$0', $text); + return preg_replace('/[,;]/', '\\\\$0', $text); } function format_adr($params, &$smarty) -- 2.1.4