--- taxonomy_delegate.module 2008-12-11 16:44:21.000000000 +0100 +++ taxonomy_delegate.module.new 2008-12-11 16:44:45.000000000 +0100 @@ -364,9 +364,9 @@ function taxonomy_delegate_overview_term $rows[] = array( ($use_image ? taxonomy_image_display($term->tid) : null), l($term->name, 'taxonomy/term/'. $term->tid), - decode_entities(check_markup($term->description)), + check_plain($term->description), l(t('edit'), 'category_admin/edit/'. $term->tid, array(), $destination), - );z + ); } } else { @@ -381,7 +381,7 @@ function taxonomy_delegate_overview_term $rows[] = array( $taxo_image, str_repeat('--', $term->depth) .' '. l($term->name, "taxonomy/term/$term->tid"), - decode_entities(check_markup($term->description)), + check_plain($term->description), l(t('edit'), 'category_admin/edit/'. $term->tid, array(), $destination), ); }