diff options
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Bromley.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Bromley.pm b/perllib/FixMyStreet/Cobrand/Bromley.pm index 406217cfc..c5c6c6345 100644 --- a/perllib/FixMyStreet/Cobrand/Bromley.pm +++ b/perllib/FixMyStreet/Cobrand/Bromley.pm @@ -13,7 +13,8 @@ sub council_url { return 'bromley'; } sub all_reports_style { return 'detailed'; } sub base_url { - 'https://fix.bromley.gov.uk'; + return FixMyStreet->config('BASE_URL') if FixMyStreet->config('STAGING_SITE'); + return 'https://fix.bromley.gov.uk'; } sub admin_base_url { '' } |