When using single quote in an article title, the quote isn't displayed correctly in the Menu Breadcrumb.
It is a real problem for some language.

Example:
Title: I'm a bug
Menu: I'm a bug

Maybe other characters are affected.

Comments

LeCyb’s picture

Status: Active » Fixed

After Drupal 6.2 update it doens't appears anymore.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

moettti’s picture

I still had the problem with Drupal 6.2 and I fixed it by activating HTML instead of plaintext:

replace this line in menu_breadcrumb.module:

$breadcrumb[] = l(drupal_get_title(), $_GET['q']);

with this lines:

$options['html'] = TRUE;
$breadcrumb[] = l(drupal_get_title(), $_GET['q'], $options);