Index: taxonomy_manager.admin.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_manager/Attic/taxonomy_manager.admin.inc,v retrieving revision 1.1.2.17.2.24 diff -u -p -r1.1.2.17.2.24 taxonomy_manager.admin.inc --- taxonomy_manager.admin.inc 19 Aug 2009 12:22:26 -0000 1.1.2.17.2.24 +++ taxonomy_manager.admin.inc 3 Sep 2009 17:35:33 -0000 @@ -1541,7 +1541,7 @@ function taxonomy_manager_settings() { $form['taxonomy_manager_disable_merge_redirect'] = array( '#type' => 'checkbox', '#title' => t('Disable redirect of the taxonomy term page to merged terms '), - '#default_value' => variable_get('taxonomy_manager_disable_merge_redirect', 0), + '#default_value' => variable_get('taxonomy_manager_disable_merge_redirect', TRUE), '#description' => t('When using the merging feature, the selected terms get merged into one term. All selected terms will be deleted afterwards. Normally the Taxonomy Manager redirects calls to taxonomy/term/$tid of the deleted terms (through merging) to the resulting merged term. This feature might conflict with other modules (e.g. Taxonomy Breadcrumb, Panels), which implement hook_menu_alter to change the taxonomy_manager_term_page callback. Disable this feature if it conflicts with other modules or if you do not need it. Changing this setting requires a (menu) cache flush to become active.'), ); $form['taxonomy_manager_pager_tree_page_size'] = array( Index: taxonomy_manager.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_manager/taxonomy_manager.module,v retrieving revision 1.5.2.17.2.14.2.14 diff -u -p -r1.5.2.17.2.14.2.14 taxonomy_manager.module --- taxonomy_manager.module 20 Aug 2009 08:09:14 -0000 1.5.2.17.2.14.2.14 +++ taxonomy_manager.module 3 Sep 2009 17:35:34 -0000 @@ -120,7 +120,7 @@ function taxonomy_manager_menu() { * Implementation of hook_menu_alter */ function taxonomy_manager_menu_alter(&$callbacks) { - if (!variable_get('taxonomy_manager_disable_merge_redirect', 0)) { + if (!variable_get('taxonomy_manager_disable_merge_redirect', TRUE)) { $callbacks['taxonomy/term/%']['page callback'] = 'taxonomy_manager_term_page'; } }