Merge pull request #23474 from owncloud/RealRancor-exclude_lost_and_found

Exclude lost+found dir in integrity check
This commit is contained in:
Thomas Müller 2016-03-23 08:05:27 +01:00
commit abcee56fe3
1 changed files with 2 additions and 1 deletions

View File

@ -34,10 +34,11 @@ class ExcludeFoldersByPathFilterIterator extends \RecursiveFilterIterator {
$excludedFolders = [
rtrim($root . '/data', '/'),
rtrim($root .'/themes', '/'),
rtrim($root . '/themes', '/'),
rtrim($root . '/config', '/'),
rtrim($root . '/apps', '/'),
rtrim($root . '/assets', '/'),
rtrim($root . '/lost+found', '/'),
];
$customDataDir = \OC::$server->getConfig()->getSystemValue('datadirectory', '');
if($customDataDir !== '') {