diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-09-27 06:00:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-09-27 06:00:43 +0000 |
commit | fe09d5a7867e9f5294e23cb202def475c102fcbc (patch) | |
tree | 32e8ff72d654effe901edecb892600dbd8282aad /modules/node/node.module | |
parent | 0ff789c61d1c2ed332064d1af928fb3dfb4800af (diff) | |
download | brdo-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/node/node.module')
-rw-r--r-- | modules/node/node.module | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index d4b985eaa..0fe2c461b 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -571,12 +571,13 @@ function node_link($type, $node = 0, $main = 0) { } if ($type == "system") { + menu("node/add", t("create content"), NULL, NULL, 1); if (user_access("administer nodes")) { - menu("admin/node", "content management", "node_admin", node_help("admin/node")); - menu("admin/node/search", "search posts", "node_admin", node_help("admin/node/search"), 8); + menu("admin/node", "content", "node_admin", node_help("admin/node")); + menu("admin/node/search", "search", "node_admin", node_help("admin/node/search"), 8); menu("admin/node/help", "help", "node_help", NULL, 9); menu("admin/node/edit", "edit node", "node_admin", NULL, 0, 1); - menu("admin/node/settings", "content settings", "node_admin", node_help("admin/node/settings"), 8); + menu("admin/node/settings", "settings", "node_admin", node_help("admin/node/settings"), 8); } } |