Index: taxonomy.module =================================================================== RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.module,v retrieving revision 1.419 diff -u -p -r1.419 taxonomy.module --- taxonomy.module 23 Apr 2008 20:01:54 -0000 1.419 +++ taxonomy.module 30 Apr 2008 05:09:45 -0000 @@ -162,6 +162,15 @@ function taxonomy_menu() { 'file' => 'taxonomy.pages.inc', ); + $items['taxonomy/term/%/%'] = array( + 'title' => 'Taxonomy term', + 'page callback' => 'taxonomy_term_page', + 'page arguments' => array(2, 3), + 'access arguments' => array('access content'), + 'type' => MENU_CALLBACK, + 'file' => 'taxonomy.pages.inc', + ); + $items['taxonomy/autocomplete'] = array( 'title' => 'Autocomplete taxonomy', 'page callback' => 'taxonomy_autocomplete', @@ -169,6 +178,7 @@ function taxonomy_menu() { 'type' => MENU_CALLBACK, 'file' => 'taxonomy.pages.inc', ); + $items['admin/content/taxonomy/%taxonomy_vocabulary'] = array( 'title' => 'List terms', 'page callback' => 'drupal_get_form',