aboutsummaryrefslogtreecommitdiff
path: root/src/globals.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/globals.php')
-rwxr-xr-xsrc/globals.php2
1 files changed, 2 insertions, 0 deletions
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("&lt;", "<", $text);
$text = str_replace("&gt;", ">", $text);
+ $text = str_replace("&#39;", "'", $text);
+ $text = str_replace("&#96;", "`", $text);
$text = str_replace("&amp;", "&", $text);
return $text;
}