From b2d214f4bec2fe1c4b0830308848d80a61350530 Mon Sep 17 00:00:00 2001 From: James Richie Date: Tue, 21 Jul 2026 06:40:05 -0400 Subject: [PATCH] Modified reports/Export_AllPermitsBySubdivision_CSV.php to include the post superglobal for the CSV export --- reports/Export_AllPermitsBySubdivision_CSV.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/Export_AllPermitsBySubdivision_CSV.php b/reports/Export_AllPermitsBySubdivision_CSV.php index 9e873d5..b2f704e 100644 --- a/reports/Export_AllPermitsBySubdivision_CSV.php +++ b/reports/Export_AllPermitsBySubdivision_CSV.php @@ -32,7 +32,7 @@ class Export_AllPermitsBySubdivision_CSV extends Base { $permit_area = $subscription->record->subscription_area; $projecttype = $subscription->record->subscription_projecttype; - $permits = (new PermitsBySubdivision())->getAllPermitsBySubdivision($permit_area, $projecttype); + $permits = (new PermitsBySubdivision())->getAllPermitsBySubdivision($permit_area, $projecttype, $_POST); header('Content-Type: text/csv'); header('Content-Disposition: attachment; filename="All_PermitsBySubdivision.csv"');