From 6ea9204889915f098fa713ce8a8449bbe667b91b Mon Sep 17 00:00:00 2001 From: Neil Drumm Date: Fri, 25 Aug 2006 08:55:04 +0000 Subject: #56093 by webchick. Fix forums. --- modules/forum/forum.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/forum/forum.module') diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 9b5be7b12..51c5a2895 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -594,10 +594,10 @@ function forum_overview() { if ($tree) { foreach ($tree as $term) { if (in_array($term->tid, variable_get('forum_containers', array()))) { - $rows[] = array(_taxonomy_depth($term->depth) .' '. check_plain($term->name), l(t('edit container'), "admin/content/forum/edit/container/$term->tid")); + $rows[] = array(str_repeat(' -- ', $term->depth) .' '. check_plain($term->name), l(t('edit container'), "admin/content/forum/edit/container/$term->tid")); } else { - $rows[] = array(_taxonomy_depth($term->depth) .' '. check_plain($term->name), l(t('edit forum'), "admin/content/forum/edit/forum/$term->tid")); + $rows[] = array(str_repeat(' -- ', $term->depth) .' '. check_plain($term->name), l(t('edit forum'), "admin/content/forum/edit/forum/$term->tid")); } } @@ -639,7 +639,7 @@ function _forum_parent_select($tid, $title, $child_type) { if ($tree) { foreach ($tree as $term) { if (!in_array($term->tid, $exclude)) { - $options[$term->tid] = _taxonomy_depth($term->depth) . $term->name; + $options[$term->tid] = str_repeat(' -- ', $term->depth) . $term->name; } } } -- cgit v1.2.3