From abe722f0b8f93e32d5a54bc974801bb831a546a1 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Wed, 3 Jun 2009 02:41:07 +0000 Subject: #453726 by yched: Remove unnecessary &s next to object parameters in field API. --- modules/field/field.api.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/field/field.api.php') diff --git a/modules/field/field.api.php b/modules/field/field.api.php index b73e4707f..f887b8a32 100644 --- a/modules/field/field.api.php +++ b/modules/field/field.api.php @@ -494,7 +494,7 @@ function hook_field_attach_form($obj_type, $object, &$form, &$form_state) { * set as an empty array. * - Loaded field names are set as keys in $skip_fields. */ -function hook_field_attach_pre_load($obj_type, &$objects, $age, &$skip_fields) { +function hook_field_attach_pre_load($obj_type, $objects, $age, &$skip_fields) { } /** @@ -512,7 +512,7 @@ function hook_field_attach_pre_load($obj_type, &$objects, $age, &$skip_fields) { * * See field_attach_load() for details and arguments. */ -function hook_field_attach_load($obj_type, &$objects, $age) { +function hook_field_attach_load($obj_type, $objects, $age) { } /** @@ -688,7 +688,7 @@ function hook_field_attach_delete_bundle($bundle, $instances) { * Loaded field values are added to $objects. Fields with no values should be * set as an empty array. */ -function hook_field_storage_load($obj_type, &$objects, $age, $skip_fields) { +function hook_field_storage_load($obj_type, $objects, $age, $skip_fields) { } /** -- cgit v1.2.3