It seems there is a bug in the code that is causing home link in breadcrumb to render as 'http:///' when viewing pages with just 'Home' on the breadcrumb. This is caused by the code:

$breadcrumbs[] = l(t('Home'), '/');

I'll submitted a patch to make this do this instead:

$breadcrumbs[] = l(t('Home'), '<front>');

Cheers.

Comments

victoriachan’s picture

Here's the patch:

SeriousMatters’s picture

Assigned: Unassigned » SeriousMatters
Status: Active » Closed (fixed)

Thanks victoriachan,

It was originally l(t('Home'), '<front>') previously. I think I did some debugging/benchmarking and forgot to change it back :-|

I am pushing the change now.

victoriachan’s picture

Wow that's quick. Thanks!