diff options
Diffstat (limited to 'src')
| -rwxr-xr-x | src/globals.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/globals.php b/src/globals.php index ae11a13..5183040 100755 --- a/src/globals.php +++ b/src/globals.php @@ -229,6 +229,7 @@ function unsanitizeText($text) { $text = str_replace(">", ">", $text); $text = str_replace("'", "'", $text); $text = str_replace("`", "`", $text); + $text = str_replace(""", "\"", $text); $text = str_replace("&", "&", $text); return $text; } |