Skip to content
Snippets Groups Projects
Commit edc4447d authored by Björn Schießle's avatar Björn Schießle
Browse files

set delete all to true if a complete folder was deleted

parent 8ce3ea3e
No related branches found
No related tags found
No related merge requests found
......@@ -4,8 +4,8 @@ OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();
// "empty trash" command
$deleteAll = false;
if (isset($_POST['allfiles']) and $_POST['allfiles'] === 'true'){
$deleteAll = true;
$folder = isset($_POST['dir']) ? $_POST['dir'] : '/';
if ($folder === '/') {
OCA\Files_Trashbin\Trashbin::deleteAll();
......@@ -20,6 +20,7 @@ if (isset($_POST['allfiles']) and $_POST['allfiles'] === 'true'){
}
}
else {
$deleteAll = false;
$files = $_POST['files'];
$dirlisting = $_POST['dirlisting'];
$list = json_decode($files);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment