diff --git a/includes/view.inc b/includes/view.inc index 45176d5b1bd63a5d443588c8d877541987b3ce6f..2bdf2d7ee68baf311a598c16d97c9a2bff562520 100644 --- a/includes/view.inc +++ b/includes/view.inc @@ -1585,7 +1585,7 @@ function get_breadcrumb($set = FALSE) { foreach ($this->build_info['breadcrumb'] as $path => $title) { // Check to see if the frontpage is in the breadcrumb trail; if it // is, we'll remove that from the actual breadcrumb later. - if ($path == variable_get('site_frontpage', 'node')) { + if ($path == variable_get('site_frontpage', 'user')) { $base = FALSE; $title = t('Home'); } diff --git a/theme/theme.inc b/theme/theme.inc index 41e63978272bcbd2573efbf0416c68fea28b48fd..a68f4baf91c0a6dc23674ca91d2cacc115bb5196 100644 --- a/theme/theme.inc +++ b/theme/theme.inc @@ -877,7 +877,7 @@ function template_preprocess_views_view_rss(&$vars) { } // Compare the link to the default home page; if it's the default home page, just use $base_url. - if ($path == variable_get('site_frontpage', 'node')) { + if ($path == variable_get('site_frontpage', 'user')) { $path = ''; }