Issue #1953832 by xjm, David_Rothstein: Replace 'target type' on entity reference field settings with something clearer.

8.0.x
webchick 2013-03-30 16:50:18 -07:00
parent 46284d2e07
commit 20a0f40a9c
1 changed files with 1 additions and 2 deletions

View File

@ -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,
);