From 20a0f40a9c6a8d58b1d92f5e65afd87c0a0824d2 Mon Sep 17 00:00:00 2001 From: webchick Date: Sat, 30 Mar 2013 16:50:18 -0700 Subject: [PATCH] Issue #1953832 by xjm, David_Rothstein: Replace 'target type' on entity reference field settings with something clearer. --- core/modules/entity_reference/entity_reference.module | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/modules/entity_reference/entity_reference.module b/core/modules/entity_reference/entity_reference.module index 58b6063d0b98..3675c31bbe5a 100644 --- a/core/modules/entity_reference/entity_reference.module +++ b/core/modules/entity_reference/entity_reference.module @@ -167,11 +167,10 @@ function entity_reference_field_settings_form($field, $instance, $has_data) { $form['target_type'] = array( '#type' => 'select', - '#title' => t('Target type'), + '#title' => t('Type of item to reference'), '#options' => $entity_type_options, '#default_value' => $field['settings']['target_type'], '#required' => TRUE, - '#description' => t('The entity type that can be referenced through this field.'), '#disabled' => $has_data, '#size' => 1, );