fix incorrect apostrophy escaping
This commit is contained in:
parent
a922625599
commit
a3af4e3746
2 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
7.4.5
|
7.4.5
|
||||||
|
- fix: Apostrophy incorrectly escaped as double quote in some places
|
||||||
|
|
||||||
7.4.4
|
7.4.4
|
||||||
- fix: Changing group detail adds number to group name
|
- fix: Changing group detail adds number to group name
|
||||||
|
|
|
||||||
|
|
@ -355,7 +355,7 @@ A reference to the text to be encoded.
|
||||||
sub makeParameterSafe {
|
sub makeParameterSafe {
|
||||||
my $text = shift;
|
my $text = shift;
|
||||||
${ $text } =~ s/,/,/g;
|
${ $text } =~ s/,/,/g;
|
||||||
${ $text } =~ s/'/"/g;
|
${ $text } =~ s/'/'/g;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue