J3.x

The breadcrumbs module does not show the items not linked

From Joomla! Documentation

Revision as of 08:13, 16 September 2015 by MATsxm (talk | contribs) (Marked this version for translation)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Other languages:
Deutsch • ‎English • ‎Nederlands • ‎español • ‎français
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[edit]

https://github.com/joomla/joomla-cms/issues/7838

Versions affected[edit]

General Information

This pertains only to Joomla! version(s): 3.4.4

What is the cause[edit]

The bug is on line 58 of the file /modules/mod_breadcrumbs/tmpl/default.php. <?php $item->name; ?>

How to fix[edit]

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