Index: trunk/core/kernel/utility/unit_config_reader.php =================================================================== diff -u -r4584 -r4590 --- trunk/core/kernel/utility/unit_config_reader.php (.../unit_config_reader.php) (revision 4584) +++ trunk/core/kernel/utility/unit_config_reader.php (.../unit_config_reader.php) (revision 4590) @@ -39,7 +39,8 @@ { $module_path = '/'.$module_info['Path']; if (substr($config_path, 0, strlen($module_path)) == $module_path) { - $module_found = $module_info['Loaded'] ? true : false; + // config file path starts with module folder path + $module_found = true; break; } }