Drupal面包屑被截断

时间:2011-07-13 10:38:22

标签: drupal drupal-6

我的drupal面包屑停在家里链接,如:

home>

而不是

home > title level1 > T level 2

在我的模板文件template.php中,我有:

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

有人可以告诉我为什么这似乎被截断了吗?

1 个答案:

答案 0 :(得分:0)

也许您有一个已安装的模块,例如分类法面包屑,它正在更改$ breadcrumb参数。您还可以检查page.tpl.php文件以确保它不会在那里进行修改。