Index: date/date.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/date/date/date.module,v retrieving revision 1.92 diff -u -p -r1.92 date.module --- date/date.module 13 Apr 2010 20:27:37 -0000 1.92 +++ date/date.module 29 May 2010 08:18:39 -0000 @@ -654,7 +654,7 @@ function date_field_load($entity_type, $ */ function date_field_validate($entity_type, $entity, $field, $instance, $langcode, &$items, &$errors) { module_load_include('inc', 'date', 'date_elements'); - return _date_field_validate($entity_type, $entity, $field, $instance, $langcode, &$items); + return _date_field_validate($entity_type, $entity, $field, $instance, $langcode, $items); } /** @@ -662,7 +662,7 @@ function date_field_validate($entity_typ */ function date_field_presave($entity_type, $entity, $field, $instance, $langcode, &$items) { module_load_include('inc', 'date', 'date_elements'); - return _date_field_update($entity_type, $entity, $field, $instance, $langcode, &$items); + return _date_field_update($entity_type, $entity, $field, $instance, $langcode, $items); } /** @@ -670,7 +670,7 @@ function date_field_presave($entity_type */ function date_field_update($entity_type, $entity, $field, $instance, $langcode, &$items) { module_load_include('inc', 'date', 'date_elements'); - return _date_field_update($entity_type, $entity, $field, $instance, $langcode, &$items); + return _date_field_update($entity_type, $entity, $field, $instance, $langcode, $items); } /** @@ -678,7 +678,7 @@ function date_field_update($entity_type, */ function date_field_insert($entity_type, $entity, $field, $instance, $langcode, &$items) { module_load_include('inc', 'date', 'date_elements'); - return _date_field_update($entity_type, $entity, $field, $instance, $langcode, &$items); + return _date_field_update($entity_type, $entity, $field, $instance, $langcode, $items); } /** @@ -980,4 +980,4 @@ function date_formatter_get_settings($fi $options['multiple']['multiple_to'] = variable_get($value . '_multiple_to', ''); $options['fromto']['fromto'] = variable_get($value . '_fromto', 'both'); return $options; -} \ No newline at end of file +}