We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33ab748 commit 552847eCopy full SHA for 552847e
1 file changed
server/lib/classes/system.inc.php
@@ -934,6 +934,10 @@ function copy($file1, $file2) {
934
return copy($file1, $file2);
935
}
936
937
+ function move($file1, $file2) {
938
+ return rename($file1, $file2);
939
+ }
940
+
941
function touch($file, $allow_symlink = false){
942
global $app;
943
if($allow_symlink == false && @file_exists($file) && $this->checkpath($file) == false) {
0 commit comments