diff options
author | Chris Mytton <self@hecticjeff.net> | 2013-09-09 18:11:59 +0100 |
---|---|---|
committer | Chris Mytton <self@hecticjeff.net> | 2013-09-09 18:11:59 +0100 |
commit | 196909405eb7725b52cb098364fc13d6a7591426 (patch) | |
tree | 21f707e595f506232437103e353c0e7e7a2611d1 | |
parent | bdc37865f7826e76523a478219ea5abab918593a (diff) |
[Zurich] Quote the external body name in csv
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Zurich.pm | 2 |
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'); |