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

http://www.bitbunnys.de

Comments

neclimdul’s picture

committed.

neclimdul’s picture

Status: Patch (to be ported) » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.