mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
MINOR Fix undefined variable error in ManifestBuilder::get_manifest_info()
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63449 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
ca884b809d
commit
497d760bcd
@ -141,13 +141,14 @@ class ManifestBuilder {
|
||||
foreach($topLevel as $file) {
|
||||
if($file[0] == '.') continue
|
||||
|
||||
$fullPath = '';
|
||||
$fullPath = $baseDir . '/' . $file;
|
||||
|
||||
if(@is_dir($fullPath . '/') && file_exists($fullPath . '/_exclude.php'))
|
||||
if(@is_dir($fullPath . '/') && file_exists($fullPath . '/_exclude.php')) {
|
||||
require_once($fullPath . '/_exclude.php');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Class manifest
|
||||
$classManifest = array();
|
||||
if(is_array(self::$restrict_to_modules) && count(self::$restrict_to_modules)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user