Skip to content

Commit

Permalink
csvexport switch (old php5) implode parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
trob committed Mar 14, 2022
1 parent 215ce34 commit 3a7ca50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/com_fabrik/models/csvexport.php
Expand Up @@ -145,7 +145,7 @@ public function writeFile($total, $canDownload = false)
return;
}

$str .= implode($headings, $this->delimiter) . $end_of_line;
$str .= implode($this->delimiter, $headings) . $end_of_line;
}

$incRaw = $input->get('incraw', true);
Expand Down

0 comments on commit 3a7ca50

Please sign in to comment.