aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Mytton <self@hecticjeff.net>2013-09-09 18:11:59 +0100
committerChris Mytton <self@hecticjeff.net>2013-09-09 18:11:59 +0100
commit196909405eb7725b52cb098364fc13d6a7591426 (patch)
tree21f707e595f506232437103e353c0e7e7a2611d1
parentbdc37865f7826e76523a478219ea5abab918593a (diff)
[Zurich] Quote the external body name in csv
-rw-r--r--perllib/FixMyStreet/Cobrand/Zurich.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Zurich.pm b/perllib/FixMyStreet/Cobrand/Zurich.pm
index 502748c90..7e1f64e8e 100644
--- a/perllib/FixMyStreet/Cobrand/Zurich.pm
+++ b/perllib/FixMyStreet/Cobrand/Zurich.pm
@@ -614,7 +614,7 @@ sub admin_stats {
$body .= join( ',',
$report->id, $report->created,
$report->local_coords, $report->category,
- $report->state, $report->user_id, $body_name )
+ $report->state, $report->user_id, "\"$body_name\"" )
. "\n";
}
$c->res->content_type('text/csv; charset=utf-8');