Properly check if an array key exists.
parent
97dced2eea
commit
62250377f7
|
@ -756,7 +756,7 @@ function menu_parent_options($mid, $pid = 0, $depth = 0) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add children of $pid to the list recursively.
|
// Add children of $pid to the list recursively.
|
||||||
if ($parent_item['children']) {
|
if (isset($parent_item['children'])) {
|
||||||
usort($parent_item['children'], '_menu_sort');
|
usort($parent_item['children'], '_menu_sort');
|
||||||
foreach ($parent_item['children'] as $child) {
|
foreach ($parent_item['children'] as $child) {
|
||||||
$options += menu_parent_options($mid, $child, $depth);
|
$options += menu_parent_options($mid, $child, $depth);
|
||||||
|
|
Loading…
Reference in New Issue