diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-05-11 14:53:04 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-05-11 14:53:04 +0100 |
commit | a2fcf4a4ba4fd1566626d49cd91f029b81c46bda (patch) | |
tree | 1056951d9f0fefb6244aa9333b634d7d3ed0cb40 /perllib/FixMyStreet/Map/Bromley.pm | |
parent | bcd892e6efe119e63a2b98d8148b6651f87fcad9 (diff) |
Fix some URLs so that it works under HTTPS.
Diffstat (limited to 'perllib/FixMyStreet/Map/Bromley.pm')
-rw-r--r-- | perllib/FixMyStreet/Map/Bromley.pm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/perllib/FixMyStreet/Map/Bromley.pm b/perllib/FixMyStreet/Map/Bromley.pm index 6d9dfa742..836efed39 100644 --- a/perllib/FixMyStreet/Map/Bromley.pm +++ b/perllib/FixMyStreet/Map/Bromley.pm @@ -12,12 +12,11 @@ use base 'FixMyStreet::Map::FMS'; use strict; sub map_type { - my $self = shift; - return '"' . $self->map_tile_base . '"'; + return '"/tilma"'; } sub map_tile_base { - return "tilma.mysociety.org/bromley"; + "/tilma/%d/%d/%d.png"; } 1; |