From: x2003bruneau Date: Wed, 31 Jan 2007 15:10:35 +0000 (+0000) Subject: Do not escape ':' in vcards X-Git-Tag: xorg/0.9.14~311 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=662ec806255b74da16b3af7a8d17db99ca7756f9;p=platal.git Do not escape ':' in vcards git-svn-id: svn+ssh://murphy/home/svn/platal/trunk@1451 839d8a87-29fc-0310-9880-83ba4fa771e5 --- 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)