diff options
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Around.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Around.pm | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Around.pm b/perllib/FixMyStreet/App/Controller/Around.pm index 2bfd52633..82d920b3e 100644 --- a/perllib/FixMyStreet/App/Controller/Around.pm +++ b/perllib/FixMyStreet/App/Controller/Around.pm @@ -220,24 +220,14 @@ sub check_location_is_acceptable : Private { my $lat = $c->stash->{latitude}; my $lon = $c->stash->{longitude}; - # Check this location is okay to be displayed for the cobrand - my ( $success, $error_msg ) = $c->cobrand->council_check( # - { lat => $lat, lon => $lon }, - 'submit_problem' - ); - # If in UK and we have a lat,lon coocdinate check it is in UK - if ( !$error_msg && $lat && $c->config->{COUNTRY} eq 'GB' ) { + if ( $lat && $c->config->{COUNTRY} eq 'GB' ) { eval { Utils::convert_latlon_to_en( $lat, $lon ); }; - $error_msg = - _( "We had a problem with the supplied co-ordinates - outside the UK?" - ) if $@; - } - - # show error - if ($error_msg) { - $c->stash->{location_error} = $error_msg; - return; + if ($@) { + $c->stash->{location_error} = + _( "We had a problem with the supplied co-ordinates - outside the UK?" ); + return; + } } # check that there are councils that can accept this location |