The Breadcrumb Path field in /edit/term is only 64 characters long, though the size of the database column is correct (128 chars--the Drupal standard max url_alias length).

Comments

klance’s picture

Lines 228 and 238 of taxonomy_breadcrumb.module contain this setting:

'#maxlength' => 64,

Changing them to 128 seems to fix the problem:

'#maxlength' => 128,
_craig’s picture

Status: Active » Fixed

Fixed in 5.x branch http://drupal.org/node/111061. Will be included in next release.

Anonymous’s picture

Status: Fixed » Closed (fixed)