Hi,
you can try to hack the file adminitrator/components/com_facileforms/admin/records.class.php.
There is this code quite in the beginning of that file:
for($r = 0; $r < count($recs); $r++) {
$rec = $recs[$r];
$csv .= $rec->id.'; '.
$rec->submitted.'; '.
htmlspecialchars($rec->title).'; '.
$rec->ip.'; '.
htmlspecialchars($rec->browser).'; '.
htmlspecialchars($rec->opsys).'; '.
htmlspecialchars(BFText::_('PayPal Transaction ID: ') . ' ' . $rec->paypal_tx_id).'; '.
htmlspecialchars(BFText::_('PayPal Transaction date: ') . ' ' . $rec->paypal_payment_date).'; '.
htmlspecialchars($rec->paypal_testaccount ? BFText::_('PayPal testaccount') : BFText::_('PayPal live account') ).'; '.
htmlspecialchars(BFText::_('PayPal download tries: ') . ' ' . $rec->paypal_download_tries).'; '
;
$database->setQuery(
"select * from #__facileforms_subrecords where record = $rec->id order by id"
);
$subs = $database->loadObjectList();
for($s = 0; $s < count($subs); $s++) {
$sub = $subs[$s];
$csv .= htmlspecialchars($sub->value).'; ';
} // for
$csv .= nl();
} // for
Change it to this
for($r = 0; $r < count($recs); $r++) {
$rec = $recs[$r];
$csv .= $rec->id.', '.
$rec->submitted.', '.
htmlspecialchars($rec->title).', '.
$rec->ip.', '.
htmlspecialchars($rec->browser).', '.
htmlspecialchars($rec->opsys).', '.
htmlspecialchars(BFText::_('PayPal Transaction ID: ') . ' ' . $rec->paypal_tx_id).', '.
htmlspecialchars(BFText::_('PayPal Transaction date: ') . ' ' . $rec->paypal_payment_date).', '.
htmlspecialchars($rec->paypal_testaccount ? BFText::_('PayPal testaccount') : BFText::_('PayPal live account') ).', '.
htmlspecialchars(BFText::_('PayPal download tries: ') . ' ' . $rec->paypal_download_tries).', '
;
$database->setQuery(
"select * from #__facileforms_subrecords where record = $rec->id order by id"
);
$subs = $database->loadObjectList();
for($s = 0; $s < count($subs); $s++) {
$sub = $subs[$s];
$csv .= htmlspecialchars($sub->value).', ';
} // for
$csv .= nl();
} // for