mirror of
https://github.com/nextcloud/server.git
synced 2026-03-15 23:23:35 -04:00
Merge pull request #9168 from owncloud/files-phpwarningondelete
Remove warning when deleting all entries
This commit is contained in:
commit
dd2ef47ed3
1 changed files with 2 additions and 5 deletions
|
|
@ -7,20 +7,17 @@ OCP\JSON::callCheck();
|
|||
|
||||
// Get data
|
||||
$dir = stripslashes($_POST["dir"]);
|
||||
$files = isset($_POST["file"]) ? $_POST["file"] : $_POST["files"];
|
||||
$allFiles = isset($_POST["allfiles"]) ? $_POST["allfiles"] : false;
|
||||
if ($allFiles === 'true') {
|
||||
$allFiles = true;
|
||||
}
|
||||
|
||||
// delete all files in dir ?
|
||||
if ($allFiles) {
|
||||
if ($allFiles === 'true') {
|
||||
$files = array();
|
||||
$fileList = \OC\Files\Filesystem::getDirectoryContent($dir);
|
||||
foreach ($fileList as $fileInfo) {
|
||||
$files[] = $fileInfo['name'];
|
||||
}
|
||||
} else {
|
||||
$files = isset($_POST["file"]) ? $_POST["file"] : $_POST["files"];
|
||||
$files = json_decode($files);
|
||||
}
|
||||
$filesWithError = '';
|
||||
|
|
|
|||
Loading…
Reference in a new issue