diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-01-14 20:33:42 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-01-14 20:33:42 +0000 |
commit | d268783669922eab6d6b8a2fb4fffc1400af61dc (patch) | |
tree | 3927e6c63b10a6cd103e52e8ee22c2f671cc9b41 /modules/node.module | |
parent | 20e8f9eba973a469095c7da2abe52b01a140f922 (diff) | |
download | brdo-d268783669922eab6d6b8a2fb4fffc1400af61dc.tar.gz brdo-d268783669922eab6d6b8a2fb4fffc1400af61dc.tar.bz2 |
- Small improvement to the admin menu based on feedback from Michael.
Diffstat (limited to 'modules/node.module')
-rw-r--r-- | modules/node.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node.module b/modules/node.module index e48945e02..ba89972b7 100644 --- a/modules/node.module +++ b/modules/node.module @@ -454,9 +454,9 @@ function node_link($type, $node = 0, $main = 0) { $search = "On this page you can search for a post. For example, one may search for 'br' and Drupal might return 'bread brakers', 'our daily bread' and 'brenda'."; menu_add("content management", url("admin/node"), "Content management.", NULL, NULL); - menu_add("submit new content", url("node/add"), "Submit new content.", NULL, "content management", -1, 1); - menu_add("new or updated posts", url("admin/node/nodes/0"), "Display all new or updated posts.", NULL, "content management", 0, 1); - menu_add("posts that await approval", url("admin/node/nodes/1"), "Display posts that await approval.", NULL, "content management", 0, 1); + menu_add("submit new content", url("node/add"), "Submit new content.", NULL, "content management", -1); + menu_add("new or updated posts", url("admin/node/nodes/0"), "Display all new or updated posts.", NULL, "content management", 0); + menu_add("posts that await approval", url("admin/node/nodes/1"), "Display posts that await approval.", NULL, "content management", 0); menu_add("search content", url("admin/node/search"), "Search a post.", $search, "content management", 5); menu_add("help", url("admin/node/help"), "More information about content management.", NULL, "content management", 7); } |