Index: logintoboggan.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/logintoboggan/logintoboggan.module,v
retrieving revision 1.133.2.40
diff -u -F '^f' -u -F '^f' -r1.133.2.40 logintoboggan.module
--- logintoboggan.module	14 Jun 2010 21:51:43 -0000	1.133.2.40
+++ logintoboggan.module	8 Sep 2010 17:15:26 -0000
@@ -820,9 +820,14 @@ function logintoboggan_denied() {
     global $logintoboggan_denied;
     $logintoboggan_denied = TRUE;
 
-    // build the user menu item as the 403 page content, adjust the page title appropriately, and warn
-    // the user that they were denied access.
+    // Build the user menu item as the 403 page content, adjust the page title
+    // and breadcrumb trail appropriately, and warn the user that they were
+    // denied access.
     menu_set_active_item('user');
+    $trail = array();
+    $trail[] = array('title' => t('Home'), 'href' => '<front>', 'localized_options' => array());
+    menu_set_active_trail($trail);
+
     $return = menu_execute_active_handler();
     drupal_set_title(t('Access Denied / User Login'));
     drupal_set_message(t('Access denied.  You may need to login below or register to access this page.'), 'error');
