diff options
author | Matthew Somerville <matthew@mysociety.org> | 2011-06-08 12:39:40 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2011-06-08 12:39:40 +0100 |
commit | 2d0503ccfd4c55ea7252e19603fe4732c2f36f9e (patch) | |
tree | c49fd72256181c2e0f965c22961fa6fe72466931 /perllib/FixMyStreet/App/Controller/Reports.pm | |
parent | 614abaa627d3f9dfe14efcb994cdcfc0146a623d (diff) |
Start moving stuff out of Problems.pm, do JSON as per its better-way comment.
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Reports.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Reports.pm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Reports.pm b/perllib/FixMyStreet/App/Controller/Reports.pm index 993cd752e..7cb9ad9fb 100644 --- a/perllib/FixMyStreet/App/Controller/Reports.pm +++ b/perllib/FixMyStreet/App/Controller/Reports.pm @@ -246,8 +246,7 @@ sub load_problems : Private { my ( $self, $c ) = @_; my $where = { - state => [ 'confirmed', 'fixed' ], - %{ Problems::site_restriction() } + state => [ 'confirmed', 'fixed' ] }; if ($c->stash->{ward}) { $where->{areas} = { 'like', '%' . $c->stash->{ward}->{id} . '%' }; # FIXME Check this is secure @@ -255,7 +254,7 @@ sub load_problems : Private { $where->{areas} = { 'like', '%' . $c->stash->{council}->{id} . '%' }; } my $current_timestamp = Problems::current_timestamp(); - my $problems = $c->model('DB::Problem')->search( + my $problems = $c->model('DB::Problem')->site_restricted->search( $where, { columns => [ |