? database_tests.patch ? dbtng-cleanup.patch ? drupal7-feature_help-system.patch ? installer-status-report-281446-10.patch ? installer_breakage.patch ? installer_status_report.patch ? menu_translate.patch ? mw_162.patch ? strictmysql.patch ? system-modules-broken-229129-30.patch ? system_modules_cleanup-229129-22.patch ? tab_restricted_context.patch ? welcome_4.patch ? includes/database/database.inc ? includes/database/query.inc ? includes/database/schema.inc ? includes/database/select.inc ? modules/help/help-popup.css ? modules/help/help-popup.tpl.php ? modules/help/help.js ? modules/simpletest/tests/database_test.info ? modules/simpletest/tests/database_test.install ? modules/simpletest/tests/database_test.module ? modules/simpletest/tests/database_test.test ? sites/default/files ? sites/default/settings.php Index: modules/taxonomy/taxonomy.module =================================================================== RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.module,v retrieving revision 1.425 diff -u -p -r1.425 taxonomy.module --- modules/taxonomy/taxonomy.module 24 Jul 2008 16:25:19 -0000 1.425 +++ modules/taxonomy/taxonomy.module 14 Sep 2008 00:51:23 -0000 @@ -148,7 +148,6 @@ function taxonomy_menu() { 'access arguments' => array('administer taxonomy'), 'type' => MENU_CALLBACK, ); - $items['taxonomy/term/%'] = array( 'title' => 'Taxonomy term', 'page callback' => 'taxonomy_term_page', @@ -156,7 +155,18 @@ function taxonomy_menu() { 'access arguments' => array('access content'), 'type' => MENU_CALLBACK, ); - + $items['taxonomy/term/%/view'] = array( + 'title' => 'View', + 'type' => MENU_DEFAULT_LOCAL_TASK, + ); + $items['taxonomy/term/%/edit'] = array( + 'title' => 'Edit term', + 'page callback' => 'taxonomy_admin_term_edit', + 'page arguments' => array(2), + 'access arguments' => array('administer taxonomy'), + 'type' => MENU_LOCAL_TASK, + 'weight' => 1, + ); $items['taxonomy/autocomplete'] = array( 'title' => 'Autocomplete taxonomy', 'page callback' => 'taxonomy_autocomplete',