diff options
| author | Cassio de Campos <cassiopc@gmail.com> | 2018-09-05 20:08:24 +0000 |
|---|---|---|
| committer | Cassio de Campos <cassiopc@gmail.com> | 2018-09-05 20:08:24 +0000 |
| commit | 0470c1cf06850e1e7584739d24125f245220ee6e (patch) | |
| tree | 02a5162022d5bf45e319c7c7974bb1fc412e67d4 | |
| parent | 6302826d53cc12f731c41915a47c6c19f65743cf (diff) | |
| download | boca-0470c1cf06850e1e7584739d24125f245220ee6e.tar.gz boca-0470c1cf06850e1e7584739d24125f245220ee6e.zip | |
fix printing
| -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; } |