diff options
Diffstat (limited to 'modules/field/field.api.php')
-rw-r--r-- | modules/field/field.api.php | 6 |
1 files changed, 3 insertions, 3 deletions
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) { } /** |