From d597a9d399f89b51483274c80d771b44905d275f Mon Sep 17 00:00:00 2001 From: adam Date: Mon, 15 Feb 2021 12:13:06 +0200 Subject: rename and move are back to their original functionality --- php/rename.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'php/rename.php') diff --git a/php/rename.php b/php/rename.php index 3721c22..dac67a2 100644 --- a/php/rename.php +++ b/php/rename.php @@ -27,7 +27,7 @@ if (!$dir) { } // Check if the new filename is taken in the new dir -$contents_of_dir = $database->get_links_of($dir); +$contents_of_dir = $database->get_links_of($dir,$user->user_id); foreach ($contents_of_dir as $c) { if ($c['name'] == $new_filename) { error_log("/php/rename.php failed - filename $filename taken in $new_folder"); @@ -38,7 +38,7 @@ foreach ($contents_of_dir as $c) { // Get the file node $file_node = null; -$contents_of_old_dir = $database->get_links_of($dir); +$contents_of_old_dir = $database->get_links_of($dir,$user->user_id); foreach ($contents_of_old_dir as $c) { if ($c['name'] == $old_filename) { $file_node = $c['id']; -- cgit v1.2.3