#838040 by justinrandell, azriprajwala: Fixed notices thrown when adding a stock field to a stock content type.

merge-requests/26/head
Angie Byron 2010-06-27 18:05:54 +00:00
parent 15fe37a76b
commit 4771540eea
2 changed files with 4 additions and 3 deletions

View File

@ -515,7 +515,7 @@ function _field_ui_field_overview_form_validate_add_new($form, &$form_state) {
// Add the 'field_' prefix.
if (substr($field_name, 0, 6) != 'field_') {
$field_name = 'field_' . $field_name;
form_set_value($form['_add_new_field']['field_name'], $field_name, $form_state);
form_set_value($form['table']['_add_new_field']['field_name'], $field_name, $form_state);
}
// Invalid field name.

View File

@ -34,7 +34,8 @@ class FieldUITestCase extends DrupalWebTestCase {
// Create random field name.
$this->field_label = $this->randomName(8);
$this->field_name = 'field_' . strtolower($this->randomName(8));
$this->field_name_input = strtolower($this->randomName(8));
$this->field_name = 'field_'. $this->field_name_input;
}
/**
@ -85,7 +86,7 @@ class FieldUITestCase extends DrupalWebTestCase {
// Create a test field.
$edit = array(
'_add_new_field[label]' => $this->field_label,
'_add_new_field[field_name]' => $this->field_name,
'_add_new_field[field_name]' => $this->field_name_input,
);
$this->fieldUIAddNewField('admin/structure/types/manage/' . $this->hyphen_type, $edit);