Skip to content

Commit

Permalink
refs #1816 should not make any difference but make sure we get all rows
Browse files Browse the repository at this point in the history
  • Loading branch information
tsteur committed Nov 20, 2013
1 parent eaf9951 commit b0d7a5c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions plugins/CoreVisualizations/Visualizations/HtmlTable.php
Expand Up @@ -55,11 +55,16 @@ public function beforeRender()
$request = new ApiRequest(array(
'method' => 'API.get',
'module' => 'API',
'action' => 'get',
'format' => 'original',
'period' => $period
'filter_limit' => '-1',
'filter_offset' => 0,
'period' => $period
));

$this->assignTemplateVar('siteSummary', $request->process());
$dataTable = $request->process();

$this->assignTemplateVar('siteSummary', $dataTable);
}

}

0 comments on commit b0d7a5c

Please sign in to comment.