diff options
Diffstat (limited to 'src/globals.php')
| -rwxr-xr-x | src/globals.php | 2 |
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("<", "<", $text); $text = str_replace(">", ">", $text); + $text = str_replace("'", "'", $text); + $text = str_replace("`", "`", $text); $text = str_replace("&", "&", $text); return $text; } |