2011-07-13 56 views
0

我的Drupal的面包屑在如家的链接停止: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>'; 
    } 
} 

谁能告诉我,我为什么这似乎被截断?

+0

对我来说很好。 – Laxman13

回答

0

也许你已经安装了一个模块,例如分类标准breadcrumb,它改变了$ breadcrumb参数。你也可以检查page.tpl.php文件以确保它在那里没有被修改。