diff options
author | Matthew Somerville <matthew@mysociety.org> | 2013-01-24 14:57:45 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-01-24 14:57:45 +0000 |
commit | e3e507fc06281bf8d23a112412da7e9a85e8553c (patch) | |
tree | 99d85e513bc746899aaf04753141b38b23a017f4 /perllib/FixMyStreet/Map.pm | |
parent | 2562f16ffebb6e1b3e93396fe495eb9722403ccf (diff) |
Make sure title not shown on pins on unconfirmed Zurich reports.
Diffstat (limited to 'perllib/FixMyStreet/Map.pm')
-rw-r--r-- | perllib/FixMyStreet/Map.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Map.pm b/perllib/FixMyStreet/Map.pm index a1876e150..f2dd0da6d 100644 --- a/perllib/FixMyStreet/Map.pm +++ b/perllib/FixMyStreet/Map.pm @@ -129,7 +129,7 @@ sub map_pins { my $colour = $c->cobrand->pin_colour( $p, 'around' ); [ $p->latitude, $p->longitude, $colour, - $p->id, $p->title + $p->id, $p->title_safe ] } @$around_map, @$nearby; |