summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/node/node.module11
-rw-r--r--modules/system/system.module10
2 files changed, 10 insertions, 11 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index 7ea3578a4..93e654753 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -1273,17 +1273,6 @@ function _node_add_access() {
* Implementation of hook_menu().
*/
function node_menu() {
- $items['admin/content'] = array(
- 'title' => 'Content management',
- 'description' => "Manage your site's content.",
- 'position' => 'left',
- 'weight' => -10,
- 'page callback' => 'system_admin_menu_block_page',
- 'access arguments' => array('administer nodes'),
- 'file' => 'system.admin.inc',
- 'file path' => drupal_get_path('module', 'system'),
- );
-
$items['admin/content/node'] = array(
'title' => 'Content',
'description' => "View, edit, and delete your site's content.",
diff --git a/modules/system/system.module b/modules/system/system.module
index b2993353d..3cfdb3eb1 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -184,6 +184,16 @@ function system_menu() {
'type' => MENU_LOCAL_TASK,
'weight' => 2,
);
+ $items['admin/content'] = array(
+ 'title' => 'Content management',
+ 'description' => "Manage your site's content.",
+ 'position' => 'left',
+ 'weight' => -10,
+ 'page callback' => 'system_admin_menu_block_page',
+ 'access arguments' => array('access administration pages'),
+ 'file' => 'system.admin.inc',
+ );
+
// menu items that are basically just menu blocks
$items['admin/settings'] = array(
'title' => 'Site configuration',