Form submit handler for node_form().

This submit handler needs to run before entity_form_submit_build_entity() is invoked by node_form_submit_build_node(), because it alters the values of attached fields. Therefore, it cannot be a hook_node_submit() implementation.

1 string reference to 'locale_field_node_form_submit'
locale_form_node_form_alter in modules/locale/locale.module
Implements hook_form_BASE_FORM_ID_alter().

File

modules/locale/locale.module, line 393
Add language handling functionality and enables the translation of the user interface to languages other than English.

Code

function locale_field_node_form_submit($form, &$form_state) {
  locale_field_entity_form_submit('node', $form, $form_state);
}