diff --git a/application/ConstructionConsent/ConstructionConsentController.php b/application/ConstructionConsent/ConstructionConsentController.php index 4675c9556..73803f836 100644 --- a/application/ConstructionConsent/ConstructionConsentController.php +++ b/application/ConstructionConsent/ConstructionConsentController.php @@ -1193,7 +1193,7 @@ class ConstructionConsentController extends mfBaseController { 'Geändert am', 'Genehmigung überschrieben' ]; - fputcsv($output, $headers, ','); + fputcsv($output, $headers, ';'); if ($items) { foreach ($items as $item) { @@ -1240,7 +1240,7 @@ class ConstructionConsentController extends mfBaseController { date('d.m.Y H:i:s', $item->edit), $item->approve_override, ]; - fputcsv($output, $row, ','); + fputcsv($output, $row, ';'); } }