From 27727c0c9260a72719d6ea9d3339accf9aede948 Mon Sep 17 00:00:00 2001 From: Luca Haid Date: Wed, 7 May 2025 14:16:16 +0200 Subject: [PATCH] added export feature constr consent --- .../ConstructionConsent/ConstructionConsentController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, ';'); } }