If the module's intention is to remove the breadcrumb then it should be an option for users to reenable it.

Line 923-ish

    // Breadcrumb navigation:
    $breadcrumb = array();
    if ($tid) {
      $breadcrumb[] = l($title, 'forum');
    }
    if ($parents) {
      $parents = array_reverse($parents);
      foreach ($parents as $p) {
        if ($p->tid == $tid) {
          $title = $p->name;
        }
        else {
          $breadcrumb[] = l($p->name, 'forum/'. $p->tid);
        }
      }
    }

Just skips right over the 'home' breadcrumb.

CommentFileSizeAuthor
#2 nodeforum-376796.patch1.44 KBpebosi

Comments

nicholas.alipaz’s picture

I have also noticed that 'forum/' is hardcoded, I am fairly confident that is not the 'right' way to do that.

pebosi’s picture

Status: Active » Needs review
StatusFileSize
new1.44 KB

Added frontpage as in forum.module

regards