diff --git a/content_taxonomy.module b/content_taxonomy.module index 2b3db2b43aa9f7003dee6dd0ed0e8fa9599824b5..03b5e16656006300f89dd4ec43bd3d918559e394 100644 --- a/content_taxonomy.module +++ b/content_taxonomy.module @@ -69,7 +69,7 @@ function content_taxonomy_allowed_values($field) { $max_depth = (isset($tree['depth']) && !empty($tree['depth'])) ? $tree['depth'] : NULL; if ($terms = taxonomy_get_tree($vocabulary->vid, $tree['parent'], $max_depth)) { foreach ($terms as $term) { - $options[$term->tid] = str_repeat('-', $term->depth) . $term->name; + $options[$term->tid] = str_repeat('- ', $term->depth) . $term->name; } } }