aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCassio de Campos <cassiopc@gmail.com>2018-09-05 20:08:24 +0000
committerCassio de Campos <cassiopc@gmail.com>2018-09-05 20:08:24 +0000
commit0470c1cf06850e1e7584739d24125f245220ee6e (patch)
tree02a5162022d5bf45e319c7c7974bb1fc412e67d4 /src
parent6302826d53cc12f731c41915a47c6c19f65743cf (diff)
downloadboca-0470c1cf06850e1e7584739d24125f245220ee6e.tar.gz
boca-0470c1cf06850e1e7584739d24125f245220ee6e.zip
fix printing
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("&gt;", ">", $text);
$text = str_replace("&#39;", "'", $text);
$text = str_replace("&#96;", "`", $text);
+ $text = str_replace("&quot;", "\"", $text);
$text = str_replace("&amp;", "&", $text);
return $text;
}