summaryrefslogtreecommitdiff
path: root/modules/rdf/rdf.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-10-31 16:06:36 +0000
committerDries Buytaert <dries@buytaert.net>2009-10-31 16:06:36 +0000
commit03e2ec64ab00cfdd911496885387eafe0cf31734 (patch)
tree844291741f3c8554d6c07d4f4dd8e8c80a55694b /modules/rdf/rdf.module
parent150f6a682b67e046be445ab85218748fc73d2657 (diff)
downloadbrdo-03e2ec64ab00cfdd911496885387eafe0cf31734.tar.gz
brdo-03e2ec64ab00cfdd911496885387eafe0cf31734.tar.bz2
- Patch #606994 by yched: move entity handling out of Field API.
Diffstat (limited to 'modules/rdf/rdf.module')
-rw-r--r--modules/rdf/rdf.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/rdf/rdf.module b/modules/rdf/rdf.module
index d4b90b3c2..b520bfb96 100644
--- a/modules/rdf/rdf.module
+++ b/modules/rdf/rdf.module
@@ -310,7 +310,7 @@ function rdf_entity_info_alter(&$entity_info) {
function rdf_entity_load($entities, $type) {
foreach ($entities as $entity) {
// Extracts the bundle of the entity being loaded.
- list($id, $vid, $bundle) = field_extract_ids($type, $entity);
+ list($id, $vid, $bundle) = entity_extract_ids($type, $entity);
$entity->rdf_mapping = rdf_mapping_load($type, $bundle);
}
}