diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-09-22 15:26:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-09-22 15:26:46 +0000 |
commit | 5679074858186e09defac5c303e41512b98d0722 (patch) | |
tree | 3f325213ea02509ec8ce4c9c186d34e83bc403b6 /modules/node/node.module | |
parent | 29addd06b26192f0d3e1761e7e13b291baf7c5a1 (diff) | |
download | brdo-5679074858186e09defac5c303e41512b98d0722.tar.gz brdo-5679074858186e09defac5c303e41512b98d0722.tar.bz2 |
- Patch #550718 by alexanderpas, Gábor Hojtsy | Dries, webchick, ugerhard: tabs on admin pages are not accessible from overviews and menus.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index ed203d7b1..773e97ee5 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1573,7 +1573,7 @@ function _node_add_access() { function node_menu() { $items['admin/content'] = array( 'title' => 'Content', - 'description' => 'Find and manage content and comments.', + 'description' => 'Find and manage content.', 'page callback' => 'drupal_get_form', 'page arguments' => array('node_admin_content'), 'access arguments' => array('administer nodes'), @@ -1582,6 +1582,7 @@ function node_menu() { ); $items['admin/content/node'] = array( 'title' => 'Content', + 'description' => "View, edit, and delete your site's content.", 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); |