aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/globals.php1
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;
}