mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Adds missing semicolon for PHP5.4 support.
This commit is contained in:
parent
e126506ca2
commit
9ffa903d50
@ -195,9 +195,8 @@ class ManifestBuilder {
|
|||||||
// locate and include the exclude files
|
// locate and include the exclude files
|
||||||
$topLevel = scandir($baseDir);
|
$topLevel = scandir($baseDir);
|
||||||
foreach($topLevel as $file) {
|
foreach($topLevel as $file) {
|
||||||
if($file[0] == '.') continue
|
if($file[0] == '.') continue;
|
||||||
|
|
||||||
$fullPath = '';
|
|
||||||
$fullPath = $baseDir . '/' . $file;
|
$fullPath = $baseDir . '/' . $file;
|
||||||
|
|
||||||
if(@is_dir($fullPath . '/') && file_exists($fullPath . '/_exclude.php')) {
|
if(@is_dir($fullPath . '/') && file_exists($fullPath . '/_exclude.php')) {
|
||||||
|
Loading…
Reference in New Issue
Block a user