submenu headers are <h3> elements

This commit is contained in:
Evan Prodromou 2011-03-06 17:32:26 -05:00
parent 85610d0881
commit 457d76c0ca
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class Menu extends Widget
function submenu($label, $menu)
{
$this->action->elementStart('li');
$this->action->text($label);
$this->action->element('h3', null, $label);
$menu->show();
$this->action->elementEnd('li');
}