From 4c1522e962218c818d6575973edecf658463506e Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 19 Jan 2006 09:26:15 +0000 Subject: [PATCH] - Patch #45336 by Ber: bugfix: removed obsolete check_plain() check causing & problems. --- modules/taxonomy.module | 2 +- modules/taxonomy/taxonomy.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/taxonomy.module b/modules/taxonomy.module index c64f215a365..374bf600321 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -404,7 +404,7 @@ function taxonomy_overview() { foreach ($tree as $term) { $total_entries++; // we're counting all-totals, not displayed if (($start_from && ($start_from * $page_increment) >= $total_entries) || ($displayed_count == $page_increment)) { continue; } - $rows[] = array(_taxonomy_depth($term->depth) . ' ' . l(check_plain($term->name), "taxonomy/term/$term->tid"), l(t('edit'), "admin/taxonomy/edit/term/$term->tid", array(), $destination)); + $rows[] = array(_taxonomy_depth($term->depth) . ' ' . l($term->name, "taxonomy/term/$term->tid"), l(t('edit'), "admin/taxonomy/edit/term/$term->tid", array(), $destination)); $displayed_count++; // we're counting tids displayed } diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index c64f215a365..374bf600321 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -404,7 +404,7 @@ function taxonomy_overview() { foreach ($tree as $term) { $total_entries++; // we're counting all-totals, not displayed if (($start_from && ($start_from * $page_increment) >= $total_entries) || ($displayed_count == $page_increment)) { continue; } - $rows[] = array(_taxonomy_depth($term->depth) . ' ' . l(check_plain($term->name), "taxonomy/term/$term->tid"), l(t('edit'), "admin/taxonomy/edit/term/$term->tid", array(), $destination)); + $rows[] = array(_taxonomy_depth($term->depth) . ' ' . l($term->name, "taxonomy/term/$term->tid"), l(t('edit'), "admin/taxonomy/edit/term/$term->tid", array(), $destination)); $displayed_count++; // we're counting tids displayed }