From a5238deb047128af32c9836893b986c30c701443 Mon Sep 17 00:00:00 2001 From: Frank Schubert Date: Tue, 5 Dec 2023 19:37:32 +0100 Subject: [PATCH] Voiceplan import: Changed csv seperator back to ; --- application/Voiceplan/Voiceplan.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/Voiceplan/Voiceplan.php b/application/Voiceplan/Voiceplan.php index 9206864f5..dcf4a610e 100644 --- a/application/Voiceplan/Voiceplan.php +++ b/application/Voiceplan/Voiceplan.php @@ -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;