diff options
Diffstat (limited to 'modules/comment.module')
-rw-r--r-- | modules/comment.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment.module b/modules/comment.module index de4073b88..4a5192365 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -842,7 +842,7 @@ function comment_link($type, $node = 0, $main = 0) { menu("admin/comment/comments/1", t("approval queue"), "comment_admin", 2); menu("admin/comment/search", t("search"), "comment_admin", 8); menu("admin/comment/help", t("help"), "comment_help_page", 9); - menu("admin/comment/edit", t("edit comment"), "comment_admin", 0, 1); + menu("admin/comment/edit", t("edit comment"), "comment_admin", 0, MENU_HIDE); // comment settings: if (user_access("administer moderation")) { @@ -853,7 +853,7 @@ function comment_link($type, $node = 0, $main = 0) { menu("admin/comment/moderation/roles", t("initial scores"), "comment_admin", 6); } } - menu("comment", t("comments"), "comment_page", 0, 1); + menu("comment", t("comments"), "comment_page", 0, MENU_HIDE); } return $links; |