You are here

function _webform_view_field_number in Webform 7.4

Fix the view field(s) that are automatically generated for number components.

File

components/number.inc, line 63
Webform module number component.

Code

function _webform_view_field_number($component, $fields) {
  foreach ($fields as &$field) {
    $field['webform_datatype'] = 'number';
  }
  return $fields;
}