Skip to content

Commit

Permalink
Refs #3465, fixing build.
Browse files Browse the repository at this point in the history
  • Loading branch information
diosmosis committed Apr 17, 2013
1 parent 204cbc0 commit a8420c0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/API/DataTableManipulator/Flattener.php
Expand Up @@ -61,6 +61,10 @@ public function flatten($dataTable)
*/
protected function manipulateDataTable($dataTable)
{
if ($this->includeAggregateRows) {
$dataTable->applyQueuedFilters();
}

$newDataTable = $dataTable->getEmptyClone($keepFilters = false);
foreach ($dataTable->getRows() as $row) {
$this->flattenRow($row, $newDataTable);
Expand Down

0 comments on commit a8420c0

Please sign in to comment.