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

brmassa’s picture

Assigned: Unassigned » brmassa
Status: Needs review » Fixed

Steve,

thanks a lot about reporting this bug. Its fixed and will be on the next version.

regards,

massa

Anonymous’s picture

Status: Fixed » Closed (fixed)

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