开发者

Drupal breadcrumb truncated

My drupal breadcrumb stops at home link like:

home>

And not

home > title level1 > T level 2

In my 开发者_运维百科template file template.php i have this:

function exceliance_breadcrumb($breadcrumb) {
  if (!empty($breadcrumb)) {
    return '<div class="breadcrumb"><span>'.t("You are here : ").'</span>'. implode(' › ', $breadcrumb) .'</div>';
  }
}

Can someone tell me why this seems to be truncated?


Perhaps you have an installed module, such as taxonomy breadcrumb, that is changing the $breadcrumb parameter. You might also check the page.tpl.php file to ensure it isn't getting modified there.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜