forked from Mirrors/freeswitch
FS-7989 escape double quotes from summary
This commit is contained in:
parent
5a18d02e66
commit
684c9d3da5
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue