diff options
-rw-r--r-- | includes/menu.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/includes/menu.inc b/includes/menu.inc index b7bf2930f..ab35a3432 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 hompeage ('/' *and* '/node'). + $links[] = l(t('Home'), ''); $trail = _menu_get_active_trail(); foreach ($trail as $mid) { |