Hi Yves,
When I download a CSV file, there is notice in the file:
"Notice: Undefined variable: csvdata in /home/vpcb/domains/http://vpcb.nl/private_html/components/com_matukio/views/printeventlist/tmpl/csv.php on line 62"
This is because you concat a variable wich is not yet declared.
Remove the "." (point) before the = in this statement:
[code type=php]$csvdata .= MatukioHelperUtilsEvents::generateCSVFile($backend, $this->cid, $this->bookings, $kurs);[/code]
and the notice is gone.
Greetz,
Rob