J3.x

Difference between revisions of "The breadcrumbs module does not show the items not linked"

From Joomla! Documentation

(Marked for translation)
(Marked this version for translation)
 
Line 2: Line 2:
 
<noinclude>{{Joomla version|version=3.4.4}}</noinclude>
 
<noinclude>{{Joomla version|version=3.4.4}}</noinclude>
  
<translate>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.</translate>
+
<translate><!--T:1-->
 +
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.</translate>
  
 
<translate>
 
<translate>
==Errors reported==
+
==Errors reported== <!--T:2-->
 
</translate>
 
</translate>
 
https://github.com/joomla/joomla-cms/issues/7838
 
https://github.com/joomla/joomla-cms/issues/7838
  
 
<translate>
 
<translate>
==Versions affected==
+
==Versions affected== <!--T:3-->
 
</translate>
 
</translate>
{{tip|<translate>This pertains only to Joomla! version(s): '''3.4.4'''</translate>|title=<translate>General Information</translate>}}
+
{{tip|<translate><!--T:4-->
 +
This pertains only to Joomla! version(s): '''3.4.4'''</translate>|title=<translate><!--T:5-->
 +
General Information</translate>}}
  
 
<translate>
 
<translate>
== What is the cause==
+
== What is the cause== <!--T:6-->
 
</translate>
 
</translate>
<translate>The bug is on line 58 of the file <tt>/modules/mod_breadcrumbs/tmpl/default.php</tt>.</translate>
+
<translate><!--T:7-->
 +
The bug is on line 58 of the file <tt>/modules/mod_breadcrumbs/tmpl/default.php</tt>.</translate>
 
<tt><?php $item->name; ?></tt>
 
<tt><?php $item->name; ?></tt>
  
 
<translate>
 
<translate>
==How to fix==
+
==How to fix== <!--T:8-->
 
</translate>  
 
</translate>  
<translate>Apply the patch https://github.com/joomla/joomla-cms/pull/7839<br />
+
<translate><!--T:9-->
 +
Apply the patch https://github.com/joomla/joomla-cms/pull/7839<br />
 
or: line 58 of the file <tt>/modules/mod_breadcrumbs/tmpl/default.php</tt><br />
 
or: line 58 of the file <tt>/modules/mod_breadcrumbs/tmpl/default.php</tt><br />
 
change:<br />
 
change:<br />
Line 34: Line 39:
 
<noinclude>
 
<noinclude>
 
<translate>
 
<translate>
 +
<!--T:10-->
 
[[Category:Version 3.4.4 FAQ]]
 
[[Category:Version 3.4.4 FAQ]]
 
</translate>
 
</translate>
 
</noinclude>
 
</noinclude>

Latest revision as of 08:13, 16 September 2015

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