diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 9b52b8446..83ea4015c 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -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 diff --git a/lib/WebGUI/HTML.pm b/lib/WebGUI/HTML.pm index 3a88d04cb..b30668573 100644 --- a/lib/WebGUI/HTML.pm +++ b/lib/WebGUI/HTML.pm @@ -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; }