summaryrefslogtreecommitdiff
path: root/modules/field_ui
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-14 18:50:27 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-14 18:50:27 +0000
commit5ffb666f82f597338197c9c2dc8a03340d7740c1 (patch)
treeaf890b7764904745f88e4bd013c95c3f246dbca4 /modules/field_ui
parentf6c1d1f16f00efcb5f02dc5573764ddfd60a49c9 (diff)
downloadbrdo-5ffb666f82f597338197c9c2dc8a03340d7740c1.tar.gz
brdo-5ffb666f82f597338197c9c2dc8a03340d7740c1.tar.bz2
#938672 follow-up by tim.plunkett: Fix typo in t() string.
Diffstat (limited to 'modules/field_ui')
-rw-r--r--modules/field_ui/field_ui.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/field_ui/field_ui.admin.inc b/modules/field_ui/field_ui.admin.inc
index 3dc65e1dc..09dad0132 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'] = '<div class="messages error">' . t('There is data for this field in the database. The field settings can no longer be changed.' . '</div>') . $form['field']['#description'];
+ $form['field']['#description'] = '<div class="messages error">' . t('There is data for this field in the database. The field settings can no longer be changed.') . '</div>' . $form['field']['#description'];
}
// Build the non-configurable field values.