diff options
author | Matthew Somerville <matthew@mysociety.org> | 2011-09-12 18:22:03 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2011-09-12 18:22:03 +0100 |
commit | 4e41d25c998023839a7e4cc2ed96af2bd8254a18 (patch) | |
tree | 5b3aaca58258d3888a9adc0f923a9a16cd5e0d37 /perllib/FixMyStreet/App/Controller/Reports.pm | |
parent | 34caf792ef3efc9387543035034c402842657404 (diff) |
Hopefully fix issue with council reports pagination display, link in RSS feed, and nofollow map links.
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Reports.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Reports.pm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Reports.pm b/perllib/FixMyStreet/App/Controller/Reports.pm index f7fb5dec5..93af3393c 100644 --- a/perllib/FixMyStreet/App/Controller/Reports.pm +++ b/perllib/FixMyStreet/App/Controller/Reports.pm @@ -319,8 +319,20 @@ sub load_and_group_problems : Private { }; if ($c->stash->{ward}) { $where->{areas} = { 'like', '%,' . $c->stash->{ward}->{id} . ',%' }; + $where->{council} = [ + undef, + $c->stash->{council}->{id}, + { 'like', $c->stash->{council}->{id} . ',%' }, + { 'like', '%,' . $c->stash->{council}->{id} }, + ]; } elsif ($c->stash->{council}) { $where->{areas} = { 'like', '%,' . $c->stash->{council}->{id} . ',%' }; + $where->{council} = [ + undef, + $c->stash->{council}->{id}, + { 'like', $c->stash->{council}->{id} . ',%' }, + { 'like', '%,' . $c->stash->{council}->{id} }, + ]; } my $problems = $c->cobrand->problems->search( $where, |