From 5ffb666f82f597338197c9c2dc8a03340d7740c1 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Thu, 14 Oct 2010 18:50:27 +0000 Subject: [PATCH] #938672 follow-up by tim.plunkett: Fix typo in t() string. --- modules/field_ui/field_ui.admin.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/field_ui/field_ui.admin.inc b/modules/field_ui/field_ui.admin.inc index 3dc65e1dcbf..09dad013284 100644 --- a/modules/field_ui/field_ui.admin.inc +++ b/modules/field_ui/field_ui.admin.inc @@ -1438,7 +1438,7 @@ function field_ui_field_settings_form($form, &$form_state, $instance) { // If so, prevent changes to the field settings. $has_data = field_has_data($field); if ($has_data) { - $form['field']['#description'] = '
' . t('There is data for this field in the database. The field settings can no longer be changed.' . '
') . $form['field']['#description']; + $form['field']['#description'] = '
' . t('There is data for this field in the database. The field settings can no longer be changed.') . '
' . $form['field']['#description']; } // Build the non-configurable field values.