#187075 by dvessel: do not compute a breadcrumb for the home page (regression)

6.x
Gábor Hojtsy 2008-01-27 17:43:23 +00:00
parent 432f16d552
commit 0fa792bdd1
1 changed files with 6 additions and 0 deletions

View File

@ -1486,6 +1486,12 @@ function menu_get_active_trail() {
*/
function menu_get_active_breadcrumb() {
$breadcrumb = array();
// No breadcrumb for the front page.
if (drupal_is_front_page()) {
return $breadcrumb;
}
$item = menu_get_item();
if ($item && $item['access']) {
$active_trail = menu_get_active_trail();