summaryrefslogtreecommitdiff
path: root/modules/field/field.api.php
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-06-03 02:41:07 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-06-03 02:41:07 +0000
commitabe722f0b8f93e32d5a54bc974801bb831a546a1 (patch)
treef5d9cd89b40351d0e9af6f74c6237e4b9ae10ed6 /modules/field/field.api.php
parent314b9185929822a1cce28b01805eb34f3916f459 (diff)
downloadbrdo-abe722f0b8f93e32d5a54bc974801bb831a546a1.tar.gz
brdo-abe722f0b8f93e32d5a54bc974801bb831a546a1.tar.bz2
#453726 by yched: Remove unnecessary &s next to object parameters in field API.
Diffstat (limited to 'modules/field/field.api.php')
-rw-r--r--modules/field/field.api.php6
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) {
}
/**