diff options
Diffstat (limited to 'src')
| -rwxr-xr-x | src/globals.php | 4 |
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); |