Skip to content

Commit

Permalink
[BUGFIX] Honor colspan argument in BE grids
Browse files Browse the repository at this point in the history
  • Loading branch information
bjo3rnf committed Feb 15, 2013
1 parent 8bf1680 commit 2e64f4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Backend/BackendLayout.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public function postProcessBackendLayout(&$pageUid, &$backendLayout) {
}
array_push($colPosList, $columns[$key]['colPos']);
array_push($items, array($columns[$key]['name'], $columns[$key]['colPos'], NULL));
$colCount++;
$colCount += $column['colspan'] ? $column['colspan'] : 1;
}
$config['colCount'] = max($config['colCount'], $colCount);
$config['rowCount']++;
Expand Down

0 comments on commit 2e64f4c

Please sign in to comment.