- #505278 by Michelle, merlinofchaos - Provide backward compatibility with previous method to build Panels 3 subtype names for fields.
- #523864 Minor coding style issues in Panels 3 relationships implementations.
- #481568 by merlinofchaos - Empty property error when attempting to save a user reference in Panels.
+- #510396 by yched - Use field/type definition to render fields in views.
CCK 6.x-2.4
===========
}
function render($values) {
- $field = $this->content_field;
+ // We're down to a single node here, so we can retrieve the actual field
+ // definition for the node type being considered.
+ $field = content_fields($this->content_field['field_name'], $values->{$this->aliases['type']});
+
$options = $this->options;
$db_info = content_database_info($field);