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.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | menu_trail_by_path-home_link_bugfix-1348366.1.patch | 437 bytes | victoriachan |
Comments
Comment #1
victoriachan commentedHere's the patch:
Comment #2
SeriousMatters commentedThanks 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.
Comment #3
victoriachan commentedWow that's quick. Thanks!