Skip to content
Snippets Groups Projects
Commit bd301081 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1871328 by vijaycs85, YesCT, sun: Fixed Modules in new Multilingual...

Issue #1871328 by vijaycs85, YesCT, sun: Fixed Modules in new Multilingual package are no longer tested by Module\EnableDisableTest.
parent 8782843f
No related branches found
No related tags found
Loading
......@@ -31,7 +31,7 @@ function testEnableDisable() {
$in_testing_package = ($module->info['package'] == 'Testing');
// Try to enable, disable and uninstall all core modules, unless they are
// hidden or required or system test modules.
if (!$in_core_path || isset($module->info['hidden']) || isset($module->info['required']) || $in_testing_package) {
if (!$in_core_path || !empty($module->info['hidden']) || !empty($module->info['required']) || $in_testing_package) {
unset($modules[$name]);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment