The menu settings are lost when you edit it on the node page, please change:

  if ($form_id == 'menu_edit_item') {

to:

  if ($form_id == 'menu_edit_item' || $form_id == 'page_node_form') {

Comments

killes@www.drop.org’s picture

Status: Active » Fixed

applied in a more general form.

Status: Fixed » Closed (fixed)

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

strestus’s picture

Where?
I just downloaded the module and it is doing the same thing. It deletes the Description of the menu when editing the node.
Also in the node edit page there is no "Allow HTML" checkbox

strestus’s picture

Priority: Normal » Critical
Status: Closed (fixed) » Active
marcy_sss’s picture

You probably found it, but it's easy to figure out for newcomers:

On line 8 of menu_html.module, add this to the first line of the menu_html_form_alter() function:

if ($form_id == 'menu_edit_item' || $form_id == 'page_node_form') {

It works beautifully!

killes@www.drop.org’s picture

Status: Active » Fixed

I've put this into the 1.1 release

Status: Fixed » Closed (fixed)

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