[Vtigercrm-developers] CSV export delimiter
VTE
support at vtigerexperts.com
Mon Jan 5 04:39:29 GMT 2015
/modules/Reports/ReportsRun.php
Line: ~4282
Original:
$csv_values = array_keys($arr_val[0]);
array_pop($csv_values); //removed header in csv file
fputcsv($fp, $csv_values);
foreach($arr_val as $key=>$array_value) {
Modified:
$csv_values = array_keys($arr_val[0]);
array_shift($csv_values); //removed header in csv file
* fputcsv($fp, $csv_values, ';');*
foreach($arr_val as $key=>$array_value) {
Hope that helps!
-----
VT Experts
Email: Support at VTExperts.com
Web: http://www.VTExperts.com
Skype: VTExperts
Phone: +1 (818) 495-5557
--
View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-CSV-export-delimiter-tp14796p14820.html
Sent from the vtigercrm-developers mailing list archive at Nabble.com.
More information about the vtigercrm-developers
mailing list