diff options
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Council.pm | 7 | ||||
-rw-r--r-- | perllib/FixMyStreet/App/Controller/My.pm | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Council.pm b/perllib/FixMyStreet/App/Controller/Council.pm index 35e3d0d11..48248e4fe 100644 --- a/perllib/FixMyStreet/App/Controller/Council.pm +++ b/perllib/FixMyStreet/App/Controller/Council.pm @@ -48,12 +48,15 @@ sub load_and_check_councils : Private { @area_types = $c->cobrand->area_types(); } + my $short_latitude = Utils::truncate_coordinate($latitude); + my $short_longitude = Utils::truncate_coordinate($longitude); + # TODO: I think we want in_gb_locale around the MaPit line, needs testing my $all_councils; if ( $c->stash->{fetch_all_areas} ) { my %area_types = map { $_ => 1 } @area_types; my $all_areas = - mySociety::MaPit::call( 'point', "4326/$longitude,$latitude" ); + mySociety::MaPit::call( 'point', "4326/$short_longitude,$short_latitude" ); $c->stash->{all_areas} = $all_areas; $all_councils = { map { $_ => $all_areas->{$_} } @@ -62,7 +65,7 @@ sub load_and_check_councils : Private { }; } else { $all_councils = - mySociety::MaPit::call( 'point', "4326/$longitude,$latitude", + mySociety::MaPit::call( 'point', "4326/$short_longitude,$short_latitude", type => \@area_types ); } diff --git a/perllib/FixMyStreet/App/Controller/My.pm b/perllib/FixMyStreet/App/Controller/My.pm index e6062fe6c..1021f7056 100644 --- a/perllib/FixMyStreet/App/Controller/My.pm +++ b/perllib/FixMyStreet/App/Controller/My.pm @@ -30,7 +30,9 @@ sub my : Path : Args(0) { my $pins = []; my $problems = {}; - my $rs = $c->user->problems->search( undef, { + my $rs = $c->user->problems->search( { + state => [ 'confirmed', 'fixed' ], + }, { order_by => { -desc => 'confirmed' }, rows => 50 } )->page( $p_page ); |