summaryrefslogtreecommitdiff
path: root/modules/taxonomy
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-01-19 09:26:15 +0000
committerDries Buytaert <dries@buytaert.net>2006-01-19 09:26:15 +0000
commit4c1522e962218c818d6575973edecf658463506e (patch)
treea44ea4eb9a67ea3b6a4e00db59e63487e1c6f013 /modules/taxonomy
parent7b87ff1a6fd17dfaf933bb8f49c6d2bcc0f061d6 (diff)
downloadbrdo-4c1522e962218c818d6575973edecf658463506e.tar.gz
brdo-4c1522e962218c818d6575973edecf658463506e.tar.bz2
- Patch #45336 by Ber: bugfix: removed obsolete check_plain() check causing &amp; problems.
Diffstat (limited to 'modules/taxonomy')
-rw-r--r--modules/taxonomy/taxonomy.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index c64f215a3..374bf6003 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
}