Skip to content

Commit

Permalink
Fixed the CSV reporting for repeat views
Browse files Browse the repository at this point in the history
  • Loading branch information
pmeenan committed May 30, 2014
1 parent ca2211a commit e4fb2b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/csv.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function csvPageData($id, $testPath, $runs) {
if( $_GET['requests'] ) {
for( $i = 1; $i <= $runs; $i++ ) {
for ($cached = 0; $cached <= 1; $cached++) {
$requests = getRequests($id, $testPath, $i, 0, $secure, $loc, false);
$requests = getRequests($id, $testPath, $i, $cached, $secure, $loc, false);
if (isset($requests) && is_array($requests) && count($requests))
foreach ($requests as &$row)
csvArray($row, $id, $i, $cached);
Expand Down

0 comments on commit e4fb2b3

Please sign in to comment.