Browse Source

Bulk Loader: Changed placeholders so that <em></em> wasn't shown when confirming a bulk loading job constant exists in the table.

Lacey Sanderson 9 years ago
parent
commit
5f8422cc73
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tripal_bulk_loader/includes/tripal_bulk_loader.constants.inc

+ 2 - 2
tripal_bulk_loader/includes/tripal_bulk_loader.constants.inc

@@ -252,7 +252,7 @@ function tripal_bulk_loader_set_constants_form($form, &$form_state, $node) {
           case 'table field':
             $form['exposed_fields']['new'][$record_id . '-' . $field_id] = array(
               '#type' => 'textfield',
-              '#title' => t('%title', array('%title' => $field['title'])),
+              '#title' => t('@title', array('@title' => $field['title'])),
               '#description' => t('%exposed_description', array('%exposed_description' => $field['exposed_description'])),
               '#default_value' => $default_value,
             );
@@ -260,7 +260,7 @@ function tripal_bulk_loader_set_constants_form($form, &$form_state, $node) {
           case 'constant':
             $form['exposed_fields']['new'][$record_id . '-' . $field_id] = array(
               '#type' => 'textfield',
-              '#title' => t('%title', array('%title' => $field['title']) ),
+              '#title' => t('@title', array('@title' => $field['title']) ),
               '#description' => t('Enter the case-sensitive value of this constant for your data file'),
               '#default_value' => $default_value,
             );