diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-05-07 01:00:15 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-05-07 01:00:15 +0000 |
commit | 93082640ea54bacf60ead73e0907c7f3d183ea26 (patch) | |
tree | a20d374237a53bcb691a7993334675174a124231 | |
parent | 9cff02e91b43dc978023d6cb35ab12ee8c613bf8 (diff) | |
download | brdo-93082640ea54bacf60ead73e0907c7f3d183ea26.tar.gz brdo-93082640ea54bacf60ead73e0907c7f3d183ea26.tar.bz2 |
#62147 by Jaza, Breadcrumb for nodes should not include 'content' link
-rw-r--r-- | modules/node.module | 2 | ||||
-rw-r--r-- | modules/node/node.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/node.module b/modules/node.module index 48a881918..530e24ced 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 48a881918..530e24ced 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'), |