diff options
Diffstat (limited to 'modules/taxonomy.module')
-rw-r--r-- | modules/taxonomy.module | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module index f26b36d1d..135241f43 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -28,6 +28,9 @@ function taxonomy_link($type, $node = NULL) { menu("admin/taxonomy/add/vocabulary", t("create new vocabulary"), "taxonomy_admin"); menu("admin/taxonomy/help", t("help"), "taxonomy_admin", 9); } + if (user_access("access content")) { + menu("taxonomy", t("taxonomy"), "taxonomy_page", 0, 1); + } } else if ($type == "taxonomy terms" && $node != NULL) { $links = array(); @@ -792,7 +795,9 @@ function taxonomy_admin() { $output .= message_access(); } - return $output; + print theme("header"); + print $output; + print theme("footer"); } function taxonomy_help($section = "admin/help#taxonomy") { |