BUGFIX Fixed ManifestBuilder::get_themes() not to assume an existing themes/ folder

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@98537 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-02-09 05:37:57 +00:00 committed by Sam Minnee
parent 7cc3efa898
commit 0532bd92ae

View File

@ -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))) {
@ -591,4 +593,4 @@ class ManifestBuilder {
}
}
?>
?>