Skip to content
Snippets Groups Projects
Commit c3d83f94 authored by aland's avatar aland Committed by Tim Rohaly
Browse files

Issue #1312374 by KeyboardCowboy, Alan D.: Fatal error: Call to undefined...

Issue #1312374 by KeyboardCowboy, Alan D.: Fatal error: Call to undefined function link_field_property_info_callback() in field.info.inc on line 30
parent 1c3aaa44
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,12 @@ function entity_metadata_field_entity_property_info() {
if ($instance && empty($instance['deleted'])) {
foreach ($field_type['property_callbacks'] as $callback) {
$callback($info, $entity_type, $field, $instance, $field_type);
if (function_exists($callback)) {
$callback($info, $entity_type, $field, $instance, $field_type);
}
else {
watchdog($entity_type, 'Missing property callback %callback.', array('%callback' => $callback), WATCHDOG_ERROR);
}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment