Voiceplan import: Changed csv seperator back to ;

This commit is contained in:
Frank Schubert
2023-12-05 19:37:32 +01:00
parent 171633b904
commit a5238deb04

View File

@@ -19,7 +19,7 @@ class Voiceplan extends mfBaseModel {
$i = 0;
$filename = $file->getFullPath();
$input = fopen($filename, "r");
while($csv = fgetcsv($input, 0, ",")) {
while($csv = fgetcsv($input, 0, ";")) {
$i++;
if($i == 1) continue;
@@ -95,7 +95,7 @@ class Voiceplan extends mfBaseModel {
$i = 0;
$filename = $file->getFullPath();
$input = fopen($filename, "r");
while($csv = fgetcsv($input, 0, ",")) {
while($csv = fgetcsv($input, 0, ";")) {
$i++;
if($i == 1) continue;