Index: includes/views_tabs_plugin_style.inc =================================================================== --- includes/views_tabs_plugin_style.inc (revision 2598) +++ includes/views_tabs_plugin_style.inc (working copy) @@ -56,8 +56,16 @@ } else { $node = node_load($row->nid); - $content = node_view($node, $this->row_plugin->options['teaser'], FALSE, $this->row_plugin->options['links']); + $node->view = $this->view; + $options = $this->row_plugin->options; + $node->build_mode = ($options['build_mode'] == 'teaser' || $options['build_mode'] == 'full') ? NODE_BUILD_NORMAL : $options['build_mode']; + + $content = node_view($node, $options['build_mode'] == 'teaser', FALSE, $options['links']); $tab = $node->title; + if (!empty($options['comments']) && function_exists('comment_render')) { + $content .= comment_render($node); + } + } if (!$tabset[$tab]) {