You are here

function metatags_quick_field_update in Meta tags quick 7.2

Implements hook_field_update

See also

http://api.drupal.org/api/drupal/modules--field--field.api.php/function/...

File

./metatags_quick.module, line 176
Quick and dirty implementation of meta tags for drupal 7 Module defines new field type 'meta'. Fields of this type are not displayed in HTML. Instead, they add html meta to the head section.

Code

function metatags_quick_field_update($entity_type, $entities, $field, $instances, $langcode, &$items, $age) {
  metatags_quick_field_insert($entity_type, $entities, $field, $instances, $langcode, $items, $age);
}