From 93082640ea54bacf60ead73e0907c7f3d183ea26 Mon Sep 17 00:00:00 2001 From: Neil Drumm <drumm@3064.no-reply.drupal.org> Date: Sun, 7 May 2006 01:00:15 +0000 Subject: [PATCH] #62147 by Jaza, Breadcrumb for nodes should not include 'content' link --- modules/node.module | 2 +- modules/node/node.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/node.module b/modules/node.module index 48a8819183f1..530e24cede5f 100644 --- a/modules/node.module +++ b/modules/node.module @@ -847,7 +847,7 @@ function node_menu($may_cache) { $items[] = array('path' => 'node', 'title' => t('content'), 'callback' => 'node_page', 'access' => user_access('access content'), - 'type' => MENU_SUGGESTED_ITEM); + 'type' => MENU_MODIFIABLE_BY_ADMIN); $items[] = array('path' => 'node/add', 'title' => t('create content'), 'callback' => 'node_page', 'access' => user_access('access content'), diff --git a/modules/node/node.module b/modules/node/node.module index 48a8819183f1..530e24cede5f 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -847,7 +847,7 @@ function node_menu($may_cache) { $items[] = array('path' => 'node', 'title' => t('content'), 'callback' => 'node_page', 'access' => user_access('access content'), - 'type' => MENU_SUGGESTED_ITEM); + 'type' => MENU_MODIFIABLE_BY_ADMIN); $items[] = array('path' => 'node/add', 'title' => t('create content'), 'callback' => 'node_page', 'access' => user_access('access content'), -- GitLab