I just tested the CVS version of this module and it works fine with the 4.7 beta. I don't know what needs to be done for this to be included in the 4.7 module repository, but could someone look into it?

Comments

jo1ene’s picture

Assigned: Unassigned » jo1ene

Oops! Forgot the updated settings code:

function taxonomy_menu_settings() {
  $form['taxonomy_menu_display_descendants'] = array(
  '#type' => 'checkbox',
  '#title' => t('Display descendants'),
  '#return_value' => 1,
  '#default_value' => variable_get('taxonomy_menu_display_descendants', 1),
  '#description' => t('If checked, then when a term is selected all nodes belonging to subterms are also displayed.'),
  );
  foreach (taxonomy_get_vocabularies() as $vocabulary) {
    $form['taxonomy_menu_show_' . $vocabulary->vid] = array(
    '#type' => 'checkbox',
    '#title' => t('Show "%vocab" in menu', array('%vocab' => t($vocabulary->name))),
    '#return_value' => 1,
    '#default_value' => variable_get('taxonomy_menu_show_' . $vocabulary->vid, 1),
    );
  }

  return $form;
}
rickvug’s picture

It looks like this code made it in. I'm using the CVS version in 4.7 and everything is working nicely (so far)

jo1ene’s picture

Status: Needs review » Closed (fixed)