summaryrefslogtreecommitdiff
path: root/modules/node/node.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-01-14 20:33:42 +0000
committerDries Buytaert <dries@buytaert.net>2003-01-14 20:33:42 +0000
commitd268783669922eab6d6b8a2fb4fffc1400af61dc (patch)
tree3927e6c63b10a6cd103e52e8ee22c2f671cc9b41 /modules/node/node.module
parent20e8f9eba973a469095c7da2abe52b01a140f922 (diff)
downloadbrdo-d268783669922eab6d6b8a2fb4fffc1400af61dc.tar.gz
brdo-d268783669922eab6d6b8a2fb4fffc1400af61dc.tar.bz2
- Small improvement to the admin menu based on feedback from Michael.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r--modules/node/node.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index e48945e02..ba89972b7 100644
--- a/modules/node/node.module
+++ b/modules/node/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);
}