diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-01-25 21:49:32 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-01-25 21:49:32 +0000 |
commit | 89c8b3feaf589dcdea74dd6f21a617481dbd0ffc (patch) | |
tree | 0d6997eaea4dc90554cf1ccdefde8e07fc9f43d2 | |
parent | fd32b42196978ec8df02049cccb83e5b868bfbd7 (diff) | |
download | brdo-89c8b3feaf589dcdea74dd6f21a617481dbd0ffc.tar.gz brdo-89c8b3feaf589dcdea74dd6f21a617481dbd0ffc.tar.bz2 |
- Patch #112563 by webchick: prevent double-escaping.
-rw-r--r-- | modules/forum/forum.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 2517dd085..4db6c8ee1 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -589,10 +589,10 @@ function forum_overview() { if ($tree) { foreach ($tree as $term) { if (in_array($term->tid, variable_get('forum_containers', array()))) { - $rows[] = array(str_repeat(' -- ', $term->depth) .' '. l(check_plain($term->name), 'forum/'. $term->tid), l(t('edit container'), 'admin/content/forum/edit/container/'. $term->tid)); + $rows[] = array(str_repeat(' -- ', $term->depth) .' '. l($term->name, 'forum/'. $term->tid), l(t('edit container'), 'admin/content/forum/edit/container/'. $term->tid)); } else { - $rows[] = array(str_repeat(' -- ', $term->depth) .' '. l(check_plain($term->name), 'forum/'. $term->tid), l(t('edit forum'), 'admin/content/forum/edit/forum/'. $term->tid)); + $rows[] = array(str_repeat(' -- ', $term->depth) .' '. l($term->name, 'forum/'. $term->tid), l(t('edit forum'), 'admin/content/forum/edit/forum/'. $term->tid)); } } |