summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-01-25 21:49:32 +0000
committerDries Buytaert <dries@buytaert.net>2007-01-25 21:49:32 +0000
commit89c8b3feaf589dcdea74dd6f21a617481dbd0ffc (patch)
tree0d6997eaea4dc90554cf1ccdefde8e07fc9f43d2 /modules
parentfd32b42196978ec8df02049cccb83e5b868bfbd7 (diff)
downloadbrdo-89c8b3feaf589dcdea74dd6f21a617481dbd0ffc.tar.gz
brdo-89c8b3feaf589dcdea74dd6f21a617481dbd0ffc.tar.bz2
- Patch #112563 by webchick: prevent double-escaping.
Diffstat (limited to 'modules')
-rw-r--r--modules/forum/forum.module4
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));
}
}