From: Anthony Minessale Date: Mon, 28 Sep 2015 17:40:04 +0000 (-0500) Subject: FS-7989 escape double quotes from summary X-Git-Tag: v1.6.3~1^2~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=684c9d3da56b3f7f5fd9285463037f829ad9f9a2;p=thirdparty%2Ffreeswitch.git FS-7989 escape double quotes from summary --- diff --git a/support-d/utils/fixbug.pl b/support-d/utils/fixbug.pl index de3891bf6f..027d954bdb 100755 --- a/support-d/utils/fixbug.pl +++ b/support-d/utils/fixbug.pl @@ -39,6 +39,7 @@ my $xs= new XML::Simple; my $r = $xs->XMLin($xml); my $sum = $r->{channel}->{item}->{summary}; +$sum =~ s/\"/\\"/g; if ($opts{msg} eq "edit") { $auto = 0;