made param useless in listAllFiles since its now safe to pass all files to MM
This commit is contained in:
parent
1c628bd831
commit
bd3cf543bf
|
@ -1021,6 +1021,10 @@ SELECT filepath AS fp
|
||||||
FROM CC_FILES AS f
|
FROM CC_FILES AS f
|
||||||
WHERE f.directory = :dir_id
|
WHERE f.directory = :dir_id
|
||||||
SQL;
|
SQL;
|
||||||
|
|
||||||
|
# TODO : the option $all is deprecated now and is always true.
|
||||||
|
# refactor code where it's still being passed
|
||||||
|
$all = true;
|
||||||
|
|
||||||
if (!$all) {
|
if (!$all) {
|
||||||
$sql .= " AND f.file_exists = 'TRUE'";
|
$sql .= " AND f.file_exists = 'TRUE'";
|
||||||
|
|
Loading…
Reference in New Issue