This broke with 2.6.1 for me, i had to add
pre_term_description, just add the following block to functions.php in your theme.
$filters = array(‘term_description’,’category_description’,’pre_term_description’);
foreach ( $filters as $filter ) {
remove_filter($filter, ‘wptexturize’);
remove_filter($filter, ‘convert_chars’);
remove_filter($filter, ‘wpautop’);
remove_filter($filter, ‘wp_filter_kses’);
remove_filter($filter, ‘strip_tags’);
}