Adds missing semicolon for PHP5.4 support.

This commit is contained in:
simonwelsh 2011-08-26 16:11:06 +12:00
parent e126506ca2
commit 9ffa903d50

View File

@ -195,9 +195,8 @@ class ManifestBuilder {
// locate and include the exclude files
$topLevel = scandir($baseDir);
foreach($topLevel as $file) {
if($file[0] == '.') continue
if($file[0] == '.') continue;
$fullPath = '';
$fullPath = $baseDir . '/' . $file;
if(@is_dir($fullPath . '/') && file_exists($fullPath . '/_exclude.php')) {