Commit 379b067a by Christoffer Niska

Merged in Mytskine/yii-bootstrap/fix_BootMenu (pull request #18)

parents b6170f31 707c01ae
......@@ -96,6 +96,10 @@ class BootDropdown extends BootBaseMenu
continue;
}
if (!is_array($item)) {
continue;
}
if (!isset($item['label']))
$item['label'] = '';
......
......@@ -179,6 +179,10 @@ class BootMenu extends BootBaseMenu
continue;
}
if (!is_array($item)) {
continue;
}
if (!isset($item['label']))
$item['label'] = '';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment