Index: nodeforum.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/nodeforum/nodeforum.module,v
retrieving revision 1.2.4.4
diff -u -p -r1.2.4.4 nodeforum.module
--- nodeforum.module	3 Oct 2008 15:52:09 -0000	1.2.4.4
+++ nodeforum.module	23 Jun 2009 16:43:50 -0000
@@ -344,7 +344,7 @@ function nodeforum_napi_view(&$node, $te
   if ($page) {
     $vocabulary = taxonomy_vocabulary_load(variable_get('nodeforum_nav_vocabulary', ''));
     // Breadcrumb navigation
-    $breadcrumb = array();
+    $breadcrumb[] = l(t('Home'), NULL);
     $breadcrumb[] = l($vocabulary->name, 'forum');
     if ($parents = taxonomy_get_parents_all($node->tid)) {
       $parents = array_reverse($parents);
@@ -352,7 +352,6 @@ function nodeforum_napi_view(&$node, $te
         $breadcrumb[] = l($p->name, 'forum/'. $p->tid);
       }
     }
-    //$breadcrumb[] = array('path' => 'node/'. $node->nid);
     drupal_set_breadcrumb($breadcrumb);
   }
 
@@ -921,7 +920,7 @@ function nodeforum_page($tid = 0) {
     $title = $vocabulary->name;
 
     // Breadcrumb navigation:
-    $breadcrumb = array();
+    $breadcrumb[] = l(t('Home'), NULL);
     if ($tid) {
       $breadcrumb[] = l($title, 'forum');
     }
@@ -936,7 +935,6 @@ function nodeforum_page($tid = 0) {
         }
       }
     }
-    //$breadcrumb[] = l('path' => $_GET['q']);
     drupal_set_breadcrumb($breadcrumb);
 
     drupal_set_title($title);
