]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-7989 escape double quotes from summary
authorAnthony Minessale <anthm@freeswitch.org>
Mon, 28 Sep 2015 17:40:04 +0000 (12:40 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Mon, 28 Sep 2015 17:40:04 +0000 (12:40 -0500)
support-d/utils/fixbug.pl

index de3891bf6f3975287e45538ba4976efde206dc66..027d954bdb3a32da7d830752ced72510b611b72e 100755 (executable)
@@ -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;