Merge branch 'MDL-53855' of git://github.com/timhunt/moodle

This commit is contained in:
Dan Poltawski 2016-04-26 11:17:45 +01:00
commit 2ef629e86d
2 changed files with 9 additions and 5 deletions

View file

@ -64,8 +64,9 @@ class theme_bootstrapbase_core_renderer extends core_renderer {
}
$divider = '<span class="divider">'.get_separator().'</span>';
$list_items = '<li>'.join(" $divider</li><li>", $breadcrumbs).'</li>';
$title = '<span class="accesshide">'.get_string('pagepath').'</span>';
return $title . "<ul class=\"breadcrumb\">$list_items</ul>";
$title = '<span class="accesshide" id="navbar-label">'.get_string('pagepath').'</span>';
return $title . '<nav aria-labelledby="navbar-label"><ul class="breadcrumb">' .
$list_items . '</ul></nav>';
}
/*