Csv export filename to follow report name

kreporter currently always exports csv files as kreporter.csv

is it possible for kreporter to export in a filename of the report, instead of just a static name

ideally the export file should be the name of the report + datestamp

proposing to change in

\modules\KReports\Plugins\Integration\kcsvexport\controller\pluginkcsvexportcontroller.php

to rather use (with character escaping)

$filename = $thisReport->name . “_” . date(“Ymd_His”) . “.csv”;

Thorsten, thank you for your suggestion, we will implement it in next release