fix incorrect apostrophy escaping

This commit is contained in:
Graham Knop 2007-08-24 16:19:30 +00:00
parent a922625599
commit a3af4e3746
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
7.4.5
- fix: Apostrophy incorrectly escaped as double quote in some places
7.4.4
- fix: Changing group detail adds number to group name

View file

@ -355,7 +355,7 @@ A reference to the text to be encoded.
sub makeParameterSafe {
my $text = shift;
${ $text } =~ s/,/,/g;
${ $text } =~ s/'/"/g;
${ $text } =~ s/'/'/g;
return;
}