diff options
author | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-14 22:16:02 +0000 |
---|---|---|
committer | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-14 22:16:02 +0000 |
commit | 361c7c7ed89ed340e348ed73310819bda8b23ff0 (patch) | |
tree | 5d7caf53579d25ded3240a55e629d8cbdbf0b8f0 /includes/menu.inc | |
parent | 3bdc01fdfdcf71fe039752476d5eeb082f0ad056 (diff) | |
download | brdo-361c7c7ed89ed340e348ed73310819bda8b23ff0.tar.gz brdo-361c7c7ed89ed340e348ed73310819bda8b23ff0.tar.bz2 |
#58034, make suggested menu items show up in breadcrumbs, results in less code. Patch by Zen
Diffstat (limited to 'includes/menu.inc')
-rw-r--r-- | includes/menu.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/menu.inc b/includes/menu.inc index 8276dfd38..b160dc094 100644 --- a/includes/menu.inc +++ b/includes/menu.inc @@ -125,7 +125,7 @@ define('MENU_DYNAMIC_ITEM', MENU_VISIBLE_IN_TREE | MENU_VISIBLE_IN_BREADCRUMB); * Modules may "suggest" menu items that the administrator may enable. They act * just as callbacks do until enabled, at which time they act like normal items. */ -define('MENU_SUGGESTED_ITEM', MENU_MODIFIABLE_BY_ADMIN); +define('MENU_SUGGESTED_ITEM', MENU_MODIFIABLE_BY_ADMIN | MENU_VISIBLE_IN_BREADCRUMB); /** * Local tasks are rendered as tabs by default. Use this for menu items that |