mirror of https://github.com/itflow-org/itflow
Fix Export Clients removed extra space in delimiter
This commit is contained in:
parent
4a36efce38
commit
258287ae0c
|
|
@ -304,7 +304,7 @@ if (isset($_POST['export_clients_csv'])) {
|
|||
");
|
||||
|
||||
if ($sql->num_rows > 0) {
|
||||
$delimiter = ", ";
|
||||
$delimiter = ",";
|
||||
$filename = $session_company_name . "-Clients-" . date('Y-m-d') . ".csv";
|
||||
|
||||
//create a file pointer
|
||||
|
|
|
|||
Loading…
Reference in New Issue