Skip to content
Snippets Groups Projects
Commit a6f6ddcc authored by Neil Drumm's avatar Neil Drumm :wave:
Browse files

#88030 by beginner. Properly initialize a variable.

parent 1b201a3e
Branches
Tags
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
......@@ -197,6 +197,9 @@ function _module_parse_info_file($filename) {
if (isset($info['dependencies'])) {
$info['dependencies'] = explode(" ", $info['dependencies']);
}
else {
$info['dependencies'] = NULL;
}
return $info;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment