diff options
Diffstat (limited to 'config/filemgr/rbfminc/rename.php')
-rw-r--r-- | config/filemgr/rbfminc/rename.php | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/config/filemgr/rbfminc/rename.php b/config/filemgr/rbfminc/rename.php new file mode 100644 index 00000000..5a2096ca --- /dev/null +++ b/config/filemgr/rbfminc/rename.php @@ -0,0 +1,41 @@ +<?php +include "config.php"; +include "session.php"; + +if($user_login == 'ok'){ + + include "functions.php"; + +?> +<html> +<head> +<title>Rename</title> +</head> +<body> +<script type="text/javascript"> +//<![CDATA[ +<?php +//print_r($_POST); +if($_POST['o'] != $_POST['n']){ + if(@rename($_POST['cf'].$_POST['o'], $_POST['cf'].$_POST['n'])){ + if($_POST['t'] == 'd'){ + echo "alert('Directory successfuly renamed from \"{$_POST['o']}\" to \"{$_POST['n']}\"');"; + }else{ + echo "alert('File successfuly renamed from \"{$_POST['o']}\" to \"{$_POST['n']}\"');"; + } + }else{ + echo " + alert('Rename error'); + window.parent.location.href = window.parent.location.href; + "; + } +} + +?> +//]]> +</script> +</body> +</html> +<?php +} +?> |