=== modified file 'modules/field/field.api.php'
--- modules/field/field.api.php	2010-06-17 13:16:57 +0000
+++ modules/field/field.api.php	2010-06-18 23:24:15 +0000
@@ -1672,6 +1672,7 @@ function hook_field_storage_pre_update($
  *   - entity_type: The entity type; e.g. 'node' or 'user'.
  *   - field: The field being rendered.
  *   - instance: The instance being rendered.
+ *   - entities: The entities about to be displayed.
  *   - view_mode: The view mode, e.g. 'full', 'teaser'...
  *
  * @see hook_field_display_ENTITY_TYPE_alter()
@@ -1706,6 +1707,7 @@ function hook_field_display_alter(&$disp
  *   - entity_type: The entity type; e.g. 'node' or 'user'.
  *   - field: The field being rendered.
  *   - instance: The instance being rendered.
+ *   - entities: The entities about to be displayed.
  *   - view_mode: The view mode, e.g. 'full', 'teaser'...
  *
  * @see hook_field_display_alter()

=== modified file 'modules/field/field.default.inc'
--- modules/field/field.default.inc	2010-06-17 13:44:44 +0000
+++ modules/field/field.default.inc	2010-06-18 23:18:49 +0000
@@ -121,7 +121,7 @@ function field_default_prepare_view($ent
   foreach ($instances as $id => $instance) {
     if (is_string($display)) {
       $view_mode = $display;
-      $display = field_get_display($instance, $view_mode);
+      $display = field_get_display($instance, $view_mode, $entities);
     }
     if ($display['type'] !== 'hidden') {
       $module = $display['module'];
@@ -173,7 +173,7 @@ function field_default_view($entity_type
   // Prepare incoming display specifications.
   if (is_string($display)) {
     $view_mode = $display;
-    $display = field_get_display($instance, $view_mode);
+    $display = field_get_display($instance, $view_mode, array($id => $entity));
   }
   else {
     $view_mode = '_custom_display';

=== modified file 'modules/field/field.module'
--- modules/field/field.module	2010-06-14 15:41:02 +0000
+++ modules/field/field.module	2010-06-18 23:18:49 +0000
@@ -559,11 +559,13 @@ function field_extra_fields($entity_type
  *   The field instance being displayed.
  * @param $view_mode
  *   The view mode.
+ * @param $entities
+ *   The entities about to be displayed.
  *
  * @return
  *   The display settings to be used when displaying the field values.
  */
-function field_get_display($instance, $view_mode) {
+function field_get_display($instance, $view_mode, $entities) {
   // Check whether the view mode uses custom display settings or the 'default'
   // mode.
   $view_mode_settings = field_view_mode_settings($instance['entity_type'], $instance['bundle']);
@@ -576,6 +578,7 @@ function field_get_display($instance, $v
     'field' => field_info_field($instance['field_name']),
     'instance' => $instance,
     'view_mode' => $view_mode,
+    'entities' => $entities,
   );
   drupal_alter(array('field_display', 'field_display_' . $instance['entity_type']), $display, $context);
 

