mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX Fixed ManifestBuilder::get_themes() not to assume an existing themes/ folder (from r98537)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102765 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
68ae667748
commit
624b63ebb1
@ -159,6 +159,8 @@ class ManifestBuilder {
|
||||
// If no base directory specified, the default is the project root
|
||||
if(!$baseDir) $baseDir = BASE_PATH . DIRECTORY_SEPARATOR . THEMES_DIR;
|
||||
$themes = array();
|
||||
if(!file_exists($baseDir)) return $themes;
|
||||
|
||||
$handle = opendir($baseDir);
|
||||
if($handle) {
|
||||
while(false !== ($file = readdir($handle))) {
|
||||
|
Loading…
Reference in New Issue
Block a user