You are here

function legacy_taxonomy_feed in Drupal 4

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

Menu callback; redirects users to new taxonomy feed paths.

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

File

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

Code

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