function _webform_action_set_textarea in Webform 7.4
Implements _webform_action_set_component().
File
- components/
textarea.inc, line 235 - Webform module textarea component.
Code
function _webform_action_set_textarea($component, &$element, &$form_state, $value) {
$element['#value'] = $value;
form_set_value($element, $value, $form_state);
}