changed order by for Subdivision Exports

This commit is contained in:
2026-07-21 06:45:55 -04:00
parent eac8845f5d
commit 72883612e8
+1 -1
View File
@@ -473,7 +473,7 @@ class PermitsBySubdivision extends Base {
from view_permits r
join counties c on r.permit_county = c.county_serial
where {$where}
order by c.county_name_verbose";
order by c.county_name, r.permit_sub_div_name";
$statement = $connection->prepare($SQL);
$bindParameters($statement);