Skip to content
Snippets Groups Projects
Commit a5691ccc authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #11600 by jhriggs: the module_load_all() function will currently...

- Patch #11600 by jhriggs: the module_load_all() function will currently behave unexpectedly if a module cannot be found (has been removed, renamed, etc). Once one module fails to load, all subsequent modules will not be loaded due to a short circuit condition when performing a boolean AND.
parent dfb3c3ae
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -149,7 +149,7 @@ function module_load_all() { ...@@ -149,7 +149,7 @@ function module_load_all() {
$list = module_list(); $list = module_list();
$status = true; $status = true;
foreach ($list as $module) { foreach ($list as $module) {
$status = $status && module_load($module); $status &= module_load($module);
} }
return $status; return $status;
} }
......
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