You are here

function legacy_taxonomy_page in Drupal 4

Same name and namespace in other branches
  1. 5 modules/legacy/legacy.module \legacy_taxonomy_page()

Menu callback; redirects users to new taxonomy page paths.

1 string reference to 'legacy_taxonomy_page'
legacy_menu in modules/legacy.module
Implementation of hook_menu().

File

modules/legacy.module, line 84
Provides legacy handlers for upgrades from older Drupal installations.

Code

function legacy_taxonomy_page($operation = 'or', $str_tids = '') {
  if ($operation == 'or') {
    $str_tids = str_replace(',', '+', $str_tids);
  }
  drupal_goto('taxonomy/term/' . $str_tids);
}