If there's no pre-existing menu item then the menu item description is auto-filled with the term description. At the moment there's no check to see if the term description is longer than the allowed menu item description (128 characters).
This can be fixed by cropping the term description as put into the menu item description by changing line 292 in edit_term.module from
'#default_value' => $item['description'] ? $item['description'] : $term->description,
to
'#default_value' => $item['description'] ? $item['description'] : substr($term->description, 0 , 128),
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | edit_term-issue_287955.patch | 802 bytes | dman |
Comments
Comment #1
dman commentedYep, true enough. That bothered me a little also.
Committed to D5 DEV (not yet in the release bundle)
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #3
OliverColeman commentedStill a problem in 5.x-1.1
Comment #4
OliverColeman commentedAlso, this applies to the menu title, too (though I suppose one is much less likely to have a 128 character long term title).