From 200c0c89dc750c51eefd81dd929f0eaa44e67d01 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 13 Feb 2015 15:18:07 +0100 Subject: [PATCH] Do not change behaviour of 'false' --- apps/files/ajax/delete.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index e891bb8620..6e9f5003f1 100644 --- a/apps/files/ajax/delete.php +++ b/apps/files/ajax/delete.php @@ -7,10 +7,10 @@ OCP\JSON::callCheck(); // Get data $dir = isset($_POST['dir']) ? (string)$_POST['dir'] : ''; -$allFiles = isset($_POST["allfiles"]) ? (bool)$_POST["allfiles"] : false; +$allFiles = isset($_POST["allfiles"]) ? (string)$_POST["allfiles"] : false; // delete all files in dir ? -if ($allFiles === true) { +if ($allFiles === 'true') { $files = array(); $fileList = \OC\Files\Filesystem::getDirectoryContent($dir); foreach ($fileList as $fileInfo) {