From: lpsolit%gmail.com <> Date: Thu, 5 Jul 2007 03:58:18 +0000 (+0000) Subject: Bug 274408: iCalendar export shows summaries only after comma (must be escaped) ... X-Git-Tag: bugzilla-2.22.3~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6903b8b9b143eb35d94926f948b90f41cc1985b3;p=thirdparty%2Fbugzilla.git Bug 274408: iCalendar export shows summaries only after comma (must be escaped) - Patch by Colin Leroy r/a=LpSolit --- diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index cbefc93b71..edb2e148d3 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -510,7 +510,7 @@ sub create { my ($output) = ""; $var =~ s/[\r\n]/ /g; - $var =~ s/([;\\\"])/\\$1/g; + $var =~ s/([;\\\",])/\\$1/g; if ($par) { $output = sprintf("%s:%s", $par, $var);