Closed (duplicate)
Project:
Drupal core
Version:
7.x-dev
Component:
menu system
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
31 Mar 2010 at 02:32 UTC
Updated:
21 Aug 2014 at 15:59 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
fubhy- commentedBy "signs" I mean characters of course. Excuse my bad english please :P
Comment #2
Anonymous (not verified) commentedChecked in Beta 1 and the theme_wrappers function for outer markup has invalid characters replaced correctly, but the theme_wrappers function for menu links does not.
The line 1004 $element['#theme'] = 'menu_link__' . $data['link']['menu_name']; should read as follows:
$element['#theme'] = 'menu_link__' . strtr($data['link']['menu_name'], '-', '_');
Comment #3
ygerasimov commentedGreat catch. Here is patch for #2.
Comment #4
elijah lynnIt appears this was fixed/committed in #1001146: Cannot theme links in a menu when menu_name contains a hyphen..
Comment #5
elijah lynn