CHANGELOG for Views 2 for Drupal 6
Views 2.5
+ Bugs fixed:
+ o #363817 by thePanz: Empty fields in table could still trigger separators.
Other changes:
o #379382 by neochief: Add option to strip tags during advanced rendering.
+
Views 2.4
Bugs fixed:
o #371466 by dereine: Fix incorrect link to comments.
$field_output = $renders[$num][$field];
// Don't bother with separators and stuff if the field does not show up.
- if (!isset($field_output) && isset($vars['rows'][$num][$column])) {
+ if (empty($field_output) && !empty($vars['rows'][$num][$column])) {
continue;
}
// Place the field into the column, along with an optional separator.
- if (isset($vars['rows'][$num][$column])) {
+ if (!empty($vars['rows'][$num][$column])) {
if (!empty($options['info'][$column]['separator'])) {
$vars['rows'][$num][$column] .= filter_xss_admin($options['info'][$column]['separator']);
}