|
@@ -150,7 +150,7 @@ class Import_Manager {
|
|
|
$csv_data = array();
|
|
$csv_data = array();
|
|
|
if (($handle = fopen($file_path, "r")) !== FALSE) {
|
|
if (($handle = fopen($file_path, "r")) !== FALSE) {
|
|
|
$headers = fgetcsv($handle, 1000, ";");
|
|
$headers = fgetcsv($handle, 1000, ";");
|
|
|
- while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
|
|
|
|
|
|
|
+ while (($data = fgetcsv($handle, 1000, ";")) !== FALSE) {
|
|
|
$csv_data[] = array_combine($headers, $data);
|
|
$csv_data[] = array_combine($headers, $data);
|
|
|
}
|
|
}
|
|
|
fclose($handle);
|
|
fclose($handle);
|