--- taxonomy.module 2007-11-09 19:40:17.765625000 +0100 +++ taxonomy.module 2007-11-06 11:01:52.000000000 +0100 @@ -1091,7 +1091,7 @@ function taxonomy_rss_item($node) { foreach ($node->taxonomy as $term) { $output[] = array('key' => 'category', 'value' => check_plain($term->name), - 'attributes' => array('domain' => url(taxonomy_term_path($term), array('absolute' => TRUE)))); + 'attributes' => array('domain' => url('taxonomy/term/'. $term->tid, array('absolute' => TRUE)))); } return $output; }