diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module index d9147c0..a39ae85 100644 --- a/core/modules/taxonomy/taxonomy.module +++ b/core/modules/taxonomy/taxonomy.module @@ -82,6 +82,9 @@ function taxonomy_help($path, $arg) { case TAXONOMY_HIERARCHY_MULTIPLE: return '

' . t('%capital_name contains terms with multiple parents. Drag and drop of terms with multiple parents is not supported, but you can re-enable drag-and-drop support by editing each term to include only a single parent.', array('%capital_name' => drupal_ucfirst($vocabulary->name))) . '

'; } + case 'admin/structure/taxonomy/add': + $output = '

' . t('A vocabulary is a group of taxonomy terms that are used for categorizing content.') . '

'; + return $output; } }