diff --git a/includes/menu.inc b/includes/menu.inc index 5fc6d139d7b..eb3525b0da7 100644 --- a/includes/menu.inc +++ b/includes/menu.inc @@ -534,7 +534,10 @@ function menu_get_active_breadcrumb() { return array(); } - $links[] = l(t('Home'), variable_get('site_frontpage', 'node')); + // We do *not* want to use "variable_get('site_frontpage', 'node)" here + // as that will create the link '/node'. This is unsightly and creates + // a second URL for the homepage ('/' *and* '/node'). + $links[] = l(t('Home'), ''); $trail = _menu_get_active_trail(); foreach ($trail as $mid) {