summaryrefslogtreecommitdiff
path: root/modules/comment.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-09-27 06:00:43 +0000
committerDries Buytaert <dries@buytaert.net>2003-09-27 06:00:43 +0000
commitfe09d5a7867e9f5294e23cb202def475c102fcbc (patch)
tree32e8ff72d654effe901edecb892600dbd8282aad /modules/comment.module
parent0ff789c61d1c2ed332064d1af928fb3dfb4800af (diff)
downloadbrdo-fe09d5a7867e9f5294e23cb202def475c102fcbc.tar.gz
brdo-fe09d5a7867e9f5294e23cb202def475c102fcbc.tar.bz2
- Committed Al's new admin link texts. Remarks:
1) As explained by Al, there is still a glitch with the 'create content' menu. 2) The user module part of the patch did not apply due to Kjartan's earlier patch.
Diffstat (limited to 'modules/comment.module')
-rw-r--r--modules/comment.module14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/comment.module b/modules/comment.module
index 5e40378a7..02a0fba27 100644
--- a/modules/comment.module
+++ b/modules/comment.module
@@ -816,21 +816,21 @@ function comment_link($type, $node = 0, $main = 0) {
if ($type == "system") {
if (user_access("administer comments")) {
- menu("admin/comment", "comment management", "comment_admin", comment_help("admin/comment"), 2);
- menu("admin/comment/comments", "comment overview",NULL, comment_help("admin/comment/comments"), 2);
- menu("admin/comment/comments/0", "new or updated comments", "comment_admin", comment_help("admin/comment/comments/0"), 1);
- menu("admin/comment/comments/1", "comment approval queue", "comment_admin", comment_help("admin/comment/comments/1"), 2);
- menu("admin/comment/search", "search comments", "comment_admin", comment_help("admin/comment/search"), 8);
+ menu("admin/comment", "comments", "comment_admin", comment_help("admin/comment"), 1);
+ menu("admin/comment/comments", "overview",NULL, comment_help("admin/comment/comments"), 2);
+ menu("admin/comment/comments/0", "new/updated", "comment_admin", comment_help("admin/comment/comments/0"), 1);
+ menu("admin/comment/comments/1", "approval queue", "comment_admin", comment_help("admin/comment/comments/1"), 2);
+ menu("admin/comment/search", "search", "comment_admin", comment_help("admin/comment/search"), 8);
menu("admin/comment/help", "help", "comment_help", NULL, 9);
menu("admin/comment/edit", "edit comment", "comment_admin", NULL, 0, 1);
// comment settings:
if (user_access("administer moderation")) {
- menu("admin/comment/moderation", "comment moderation", NULL, comment_help("admin/comment/moderation"), 3);
+ menu("admin/comment/moderation", "moderation", NULL, comment_help("admin/comment/moderation"), 3);
menu("admin/comment/moderation/votes", "votes", "comment_admin", comment_help("admin/comment/moderation/votes"));
menu("admin/comment/moderation/matrix", "matrix", "comment_admin", comment_help("admin/comment/moderation/matrix"));
menu("admin/comment/moderation/filters", "thresholds", "comment_admin", comment_help("admin/comment/moderation/filters"));
- menu("admin/comment/moderation/roles", "initial comment scores", "comment_admin", comment_help("admin/comment/roles"), 6);
+ menu("admin/comment/moderation/roles", "initial scores", "comment_admin", comment_help("admin/comment/roles"), 6);
}
}
}