summaryrefslogtreecommitdiff
path: root/modules/field/field.api.php
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-07-04 10:09:47 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-07-04 10:09:47 -0700
commit1942cb4d0be394c1ae4bf61428bee802c92857dd (patch)
treef40d4384fc9bfcc1bb049a14be576fc21e8c16c1 /modules/field/field.api.php
parentc448440ce844666a09fb8c9e287bfe4d293b8fad (diff)
downloadbrdo-1942cb4d0be394c1ae4bf61428bee802c92857dd.tar.gz
brdo-1942cb4d0be394c1ae4bf61428bee802c92857dd.tar.bz2
And the .install file for the test. You'd think I wouldn't forget that TWICE, but you would be wrong.
Diffstat (limited to 'modules/field/field.api.php')
-rw-r--r--modules/field/field.api.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/field/field.api.php b/modules/field/field.api.php
index ba44c7356..3287dd555 100644
--- a/modules/field/field.api.php
+++ b/modules/field/field.api.php
@@ -1132,7 +1132,7 @@ function hook_field_attach_form($entity_type, $entity, &$form, &$form_state, $la
*
* See field_attach_load() for details and arguments.
*/
-function hook_field_attach_load($entity_type, &$entities, $age, $options) {
+function hook_field_attach_load($entity_type, $entities, $age, $options) {
// @todo Needs function body.
}
@@ -1580,7 +1580,7 @@ function hook_field_storage_details_alter(&$details, $field) {
* non-deleted fields. If unset or FALSE, only non-deleted fields should be
* loaded.
*/
-function hook_field_storage_load($entity_type, &$entities, $age, $fields, $options) {
+function hook_field_storage_load($entity_type, $entities, $age, $fields, $options) {
$field_info = field_info_field_by_ids();
$load_current = $age == FIELD_LOAD_CURRENT;