From 6302826d53cc12f731c41915a47c6c19f65743cf Mon Sep 17 00:00:00 2001 From: Cassio de Campos Date: Wed, 5 Sep 2018 22:07:08 +0200 Subject: fix some printing issues --- src/globals.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/globals.php') diff --git a/src/globals.php b/src/globals.php index 80f79df..ae11a13 100755 --- a/src/globals.php +++ b/src/globals.php @@ -227,6 +227,8 @@ function sanitizeFilename($text) 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; } -- cgit v1.2.3