| 1 |
<?php |
<?php |
| 2 |
|
|
| 3 |
// $Id: taxonomy_manager.module,v 1.5.2.17.2.14.2.13 2009/08/11 09:37:59 mh86 Exp $ |
// $Id: taxonomy_manager.module,v 1.5.2.17.2.14.2.14 2009/08/20 08:09:14 mh86 Exp $ |
| 4 |
|
|
| 5 |
/** |
/** |
| 6 |
* |
* |
| 120 |
* Implementation of hook_menu_alter |
* Implementation of hook_menu_alter |
| 121 |
*/ |
*/ |
| 122 |
function taxonomy_manager_menu_alter(&$callbacks) { |
function taxonomy_manager_menu_alter(&$callbacks) { |
| 123 |
if (!variable_get('taxonomy_manager_disable_merge_redirect', 0)) { |
if (!variable_get('taxonomy_manager_disable_merge_redirect', TRUE)) { |
| 124 |
$callbacks['taxonomy/term/%']['page callback'] = 'taxonomy_manager_term_page'; |
$callbacks['taxonomy/term/%']['page callback'] = 'taxonomy_manager_term_page'; |
| 125 |
} |
} |
| 126 |
} |
} |