You are here

function flag_field_attach_update in Flag 7.2

Same name and namespace in other branches
  1. 7.3 flag.module \flag_field_attach_update()

Implements hook_field_attach_update().

File

./flag.module, line 487
The Flag module.

Code

function flag_field_attach_update($entity_type, $entity) {
  if (isset($entity->flag)) {
    flag_field_attach_save($entity_type, $entity);
  }
}