From: lpsolit%gmail.com <> Date: Thu, 5 Jul 2007 03:57:19 +0000 (+0000) Subject: Bug 274408: iCalendar export shows summaries only after comma (must be escaped) ... X-Git-Tag: bugzilla-3.0.1~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4ad9ccf63ed90a6490c0a86a7b4ceea8c10d407;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 2764afabe0..0be70cdc62 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -749,7 +749,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);