Index: modules/forum.module =================================================================== RCS file: /cvs/drupal/drupal/modules/forum.module,v retrieving revision 1.277 diff -u -F^f -r1.277 forum.module --- modules/forum.module 21 Oct 2005 11:12:46 -0000 1.277 +++ modules/forum.module 25 Oct 2005 14:46:13 -0000 @@ -239,7 +239,7 @@ function _forum_parent_select($tid, $tit if ($tree) { foreach ($tree as $term) { if (!in_array($term->tid, $exclude)) { - $options[$term->tid] = _forum_depth($term->depth).$term->name; + $options[$term->tid] = _taxonomy_depth($term->depth).$term->name; } } } @@ -263,10 +263,10 @@ function forum_overview() { if ($tree) { foreach ($tree as $term) { if (in_array($term->tid, variable_get('forum_containers', array()))) { - $rows[] = array(_forum_depth($term->depth) .' '. check_plain($term->name), l(t('edit container'), "admin/forum/edit/container/$term->tid")); + $rows[] = array(_taxonomy_depth($term->depth) .' '. check_plain($term->name), l(t('edit container'), "admin/forum/edit/container/$term->tid")); } else { - $rows[] = array(_forum_depth($term->depth) .' '. check_plain($term->name), l(t('edit forum'), "admin/forum/edit/forum/$term->tid")); + $rows[] = array(_taxonomy_depth($term->depth) .' '. check_plain($term->name), l(t('edit forum'), "admin/forum/edit/forum/$term->tid")); } } @@ -278,19 +278,6 @@ function forum_overview() { } /** - * Helper function used to generate indentation for forum list - * - * @param $depth Depth of the indentation - * @param $graphic HTML text to be repeated for each stage of depth - */ -function _forum_depth($depth, $graphic = '--') { - for ($n = 0; $n < $depth; $n++) { - $result .= $graphic; - } - return $result; -} - -/** * Returns the vocabulary id for forum navigation. */ function _forum_get_vid() {