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