diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-06-07 00:00:57 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-06-07 00:00:57 +0000 |
commit | 395713ba4ee13c5eba520047011731c34633b1be (patch) | |
tree | e859bad65e6adf0afabde7854dad3a169ec54cbf /modules/field/field.attach.inc | |
parent | 967564af461946b132be4b9c654932bdec294627 (diff) | |
download | brdo-395713ba4ee13c5eba520047011731c34633b1be.tar.gz brdo-395713ba4ee13c5eba520047011731c34633b1be.tar.bz2 |
#392494 follow-up by yched: Clean-ups to Field API scalar search patch.
Diffstat (limited to 'modules/field/field.attach.inc')
-rw-r--r-- | modules/field/field.attach.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/field/field.attach.inc b/modules/field/field.attach.inc index 9b9e92a3f..db5c59935 100644 --- a/modules/field/field.attach.inc +++ b/modules/field/field.attach.inc @@ -833,7 +833,7 @@ function field_attach_query($field_name, $conditions, $result_format = FIELD_QUE // are therefore called on each object separately, which might cause // performance issues when large numbers of revisions are retrieved. foreach ($pseudo_objects as $vid => $pseudo_object) { - list($id) = _field_attach_extract_ids($obj_type, $pseudo_object); + list($id) = field_attach_extract_ids($obj_type, $pseudo_object); $objects = array($id => $pseudo_object); // Invoke hook_field_load(). |