aboutsummaryrefslogtreecommitdiff
path: root/src/globals.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/globals.php')
-rwxr-xr-xsrc/globals.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/globals.php b/src/globals.php
index 8b7bfb0..2e4655f 100755
--- a/src/globals.php
+++ b/src/globals.php
@@ -109,6 +109,10 @@ function sanitizeText($text, $doamp=true)
}
function sanitizeFilename($text)
{
+ $text = str_replace("$", "", $text);
+ $text = str_replace(")", "", $text);
+ $text = str_replace("(", "", $text);
+ $text = str_replace(";", "", $text);
$text = str_replace("&", "", $text);
$text = str_replace("<", "", $text);
$text = str_replace(">", "", $text);