summaryrefslogtreecommitdiff
path: root/modules/profile
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-01 15:24:18 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-01 15:24:18 +0000
commit0223bf1dc25a77671618733ee7e76fba958013d8 (patch)
treed29511cef00d788181792453651387bd959fb215 /modules/profile
parent337dbc4f8db4144bb2392dbd95017f4733946372 (diff)
downloadbrdo-0223bf1dc25a77671618733ee7e76fba958013d8.tar.gz
brdo-0223bf1dc25a77671618733ee7e76fba958013d8.tar.bz2
#699858 by David_Rothstein, catch, yoroy, sun, ronald_istos, et al: Fix admin/by-task is confusing because it looks too similar to admin/config. Makes admin/by-task a very minimal view, and makes admin/by-module a more fully fledged index.
Diffstat (limited to 'modules/profile')
-rw-r--r--modules/profile/profile.module3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/profile/profile.module b/modules/profile/profile.module
index a94c3c033..dab0f68f0 100644
--- a/modules/profile/profile.module
+++ b/modules/profile/profile.module
@@ -98,6 +98,7 @@ function profile_menu() {
'page callback' => 'drupal_get_form',
'page arguments' => array('profile_field_form'),
'access arguments' => array('administer users'),
+ 'type' => MENU_VISIBLE_IN_BREADCRUMB,
'file' => 'profile.admin.inc',
);
$items['admin/config/people/profile/autocomplete'] = array(
@@ -112,6 +113,7 @@ function profile_menu() {
'page callback' => 'drupal_get_form',
'page arguments' => array('profile_field_form'),
'access arguments' => array('administer users'),
+ 'type' => MENU_VISIBLE_IN_BREADCRUMB,
'file' => 'profile.admin.inc',
);
$items['admin/config/people/profile/delete'] = array(
@@ -119,6 +121,7 @@ function profile_menu() {
'page callback' => 'drupal_get_form',
'page arguments' => array('profile_field_delete'),
'access arguments' => array('administer users'),
+ 'type' => MENU_VISIBLE_IN_BREADCRUMB,
'file' => 'profile.admin.inc',
);
$items['profile/autocomplete'] = array(