Index: branches/5.0.x/core/kernel/utility/unit_config_reader.php =================================================================== diff -u -r12202 -r12277 --- branches/5.0.x/core/kernel/utility/unit_config_reader.php (.../unit_config_reader.php) (revision 12202) +++ branches/5.0.x/core/kernel/utility/unit_config_reader.php (.../unit_config_reader.php) (revision 12277) @@ -1,6 +1,6 @@ getConfigName($folderPath . DIRECTORY_SEPARATOR . $sub_folder))) { - $this->configFiles[] = $this->getConfigName($folderPath . DIRECTORY_SEPARATOR . $sub_folder); + $config_name = $this->getConfigName($folderPath . DIRECTORY_SEPARATOR . $sub_folder); + + if (file_exists(FULL_PATH . $config_name)) { + $this->configFiles[] = $config_name; } $this->findConfigFiles($full_path, $level + 1);