Hey Guys,
in Line 51 of views_bonus_grid.module, there's a missing '>' which breaks up the Grid View (in IE 6+).
Lines 48-52:
if ($content) {
return '<table class="view-grid view-grid-' . $view->name . '">' .
$content .
'</table';
}
Should be
if ($content) {
return '<table class="view-grid view-grid-' . $view->name . '">' .
$content .
'</table>';
}
Cheers,
Jan
Comments
Comment #1
neclimdulcommitted.
Comment #2
neclimdul