J3.x:The breadcrumbs module does not show the items not linked
From Joomla! Documentation
Joomla!
3.4.4
The module that comes with Joomla 3.4.4, in case of menu items without links (for example, items of type "Text Separator"), does not show the respective title in the path.
Errors reported
https://github.com/joomla/joomla-cms/issues/7838
Versions affected
General Information
This pertains only to Joomla! version(s): 3.4.4
What is the cause
The bug is on line 58 of the file /modules/mod_breadcrumbs/tmpl/default.php. <?php $item->name; ?>
How to fix
Apply the patch https://github.com/joomla/joomla-cms/pull/7839
or: line 58 of the file /modules/mod_breadcrumbs/tmpl/default.php
change:
<?php $item->name; ?>
To
<?php echo $item->name; ?>
The issue will be fixed in Joomla 3.4.5