There is a parser error on the rendering browser (FireFox) because the single-quote is not a valid character in the generated menu identifiers. Solution is to include the single-quote as a "forbidden" character in the dynamically generated identifier.
Module: dhtml_menu.module
PHP Line: 253
Change From:
$forbid = array(' ', '(', ')', '{', '}', '[', ']');
Change To:
$forbid = array(' ', '(', ')', '{', '}', '[', ']', '\'');
Comments
Comment #1
brmassa commentedSteve,
thanks a lot about reporting this bug. Its fixed and will be on the next version.
regards,
massa
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.