--- D:/install/drupal/6.x/modules/taxonomy_breadcrumb/2009-01-30-1.x-dev-inforion/taxonomy_breadcrumb/taxonomy_breadcrumb.inc Mon Jan 12 03:19:26 2009 +++ D:/install/drupal/6.x/modules/taxonomy_breadcrumb/2009-01-30-1.x-dev-inforion/taxonomy_breadcrumb/taxonomy_breadcrumb_new.inc Sat Mar 07 14:34:10 2009 @@ -17,8 +17,13 @@ // Include the .inc file with all helper functions require_once drupal_get_path('module', 'taxonomy') .'/taxonomy.pages.inc'; - // Call the core taxonomy_term_page function - $output = taxonomy_term_page($str_tids, $depth, $op); + // Call the core taxonomy_term_page function or taxonomy_manager_term_page (if exists) + if (module_exists('taxonomy_manager')) { + $output = taxonomy_manager_term_page($str_tids, $depth, $op); + } + else { + $output = taxonomy_term_page($str_tids, $depth, $op); + } // Use first term to generate breadcrumb trail $terms = taxonomy_terms_parse_string($str_tids);