You are here

function social_comments_field_update in Open Social 7

Implements hook_field_update().

File

./social_comments.module, line 121

Code

function social_comments_field_update($entity_type, $entity, $field, $instance, $langcode, &$items) {
  foreach ($items as $delta => $value) {
    trim($items[$delta]['url']);
  }
}