Skip to content

Commit

Permalink
fix bug where excluded files get included
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Feb 22, 2015
1 parent c811d3f commit 4778228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BackupHandlers/Files/FilesBackupHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function getAllPathFromFileArray($fileArray)
}

if (File::isDirectory($file)) {
$files += File::allFiles($file);
$files = array_merge($files, File::allFiles($file));
}
}

Expand Down

0 comments on commit 4778228

Please sign in to comment.