Index: date/date.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/date/date/date.module,v
retrieving revision 1.91
diff -u -p -r1.91 date.module
--- date/date.module	28 Mar 2010 11:48:48 -0000	1.91
+++ date/date.module	31 Mar 2010 15:51:11 -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_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);  
 }
 
 /**
@@ -670,7 +670,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);
 }
 
 /**
@@ -972,4 +972,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
+}
