diff options
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Buckinghamshire.pm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm b/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm index 49e87a1d0..f045b530f 100644 --- a/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm +++ b/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm @@ -13,6 +13,12 @@ sub example_places { return ( 'HP19 7QF', "Walton Road" ); } +sub base_url { + my $self = shift; + return $self->next::method() if FixMyStreet->config('STAGING_SITE'); + return 'https://fixmystreet.buckscc.gov.uk'; +} + sub disambiguate_location { my $self = shift; my $string = shift; @@ -70,7 +76,6 @@ sub default_map_zoom { 3 } sub enable_category_groups { 1 } - # Enable adding/editing of parish councils in the admin sub add_extra_areas { my ($self, $areas) = @_; |