aboutsummaryrefslogtreecommitdiffstats
path: root/functions/admin_functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions/admin_functions.php')
-rw-r--r--functions/admin_functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/admin_functions.php b/functions/admin_functions.php
index d62c077..d3ba2d5 100644
--- a/functions/admin_functions.php
+++ b/functions/admin_functions.php
@@ -119,7 +119,7 @@ function delete_cal ($filename) {
$delete = unlink($filename);
clearstatcache();
if (@file_exists($filename)) {
- $filesys = eregi_replace("/","\\", $filename);
+ $filesys = preg_match("/\//","\\", $filename);
$delete = system("rm -f $filesys");
clearstatcache();
if (@file_exists($filename)) {
@@ -230,7 +230,7 @@ function is_uploaded_file_v4 ($filename) {
$filename = str_replace ("\\", "/", $filename);
$tmp_file = str_replace ("\\", "/", $tmp_file);
// User might have trailing slash in php.ini...
- return (ereg_replace('/+', '/', $tmp_file) == $filename);
+ return (preg_replace('/\/+/', '/', $tmp_file) == $filename);
}
// return the appropriate error message if the file upload had an error

© 2014-2024 Faster IT GmbH | imprint | privacy policy