diff --git a/views_field_view_handler_field_view.inc b/views_field_view_handler_field_view.inc index 3c22e18..5ff28d3 100644 --- a/views_field_view_handler_field_view.inc +++ b/views_field_view_handler_field_view.inc @@ -357,16 +357,6 @@ class views_field_view_handler_field_view extends views_handler_field { function render($values) { $output = NULL; - // In case we got an empty result in a header or footer area, we will not - // render the view. - // The empty area allways passes $values == FALSE, so we are fine in the - // case we want to ender a view in the empty region. - // We do not touch $values here, as will never be touched by an area in the - // rest - if ($this->handler_type !== 'field' && $values === TRUE) { - return ''; - } - static $running = array(); // Protect against the evil / recursion. // Set the variable for yourself, this is not for the normal "user".