aboutsummaryrefslogtreecommitdiffstats
path: root/perllib
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2015-12-17 07:53:47 +0000
committerMatthew Somerville <matthew@mysociety.org>2015-12-17 07:53:47 +0000
commit7955472909243a80f395d90b93254b53b16de34d (patch)
tree1c5d634c3dc28fefd1b59da23d15d522fa5eabc1 /perllib
parentcbdfcad63e598447c318ce78738d477383f273d7 (diff)
Fix bug showing reports on Your Reports.
92dfeac used an incorrect user column name in the new lookup, and there was no test to catch the regression.
Diffstat (limited to 'perllib')
-rw-r--r--perllib/FixMyStreet/App/Controller/My.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/App/Controller/My.pm b/perllib/FixMyStreet/App/Controller/My.pm
index 81a9d7a93..8eb7f079e 100644
--- a/perllib/FixMyStreet/App/Controller/My.pm
+++ b/perllib/FixMyStreet/App/Controller/My.pm
@@ -36,7 +36,7 @@ sub my : Path : Args(0) {
my $states = $c->stash->{filter_problem_states};
my $params = {
state => [ keys %$states ],
- user => $c->user->id,
+ user_id => $c->user->id,
};
my $category = $c->get_param('filter_category');
@@ -76,7 +76,7 @@ sub my : Path : Args(0) {
$c->stash->{updates} = \@updates;
$c->stash->{updates_pager} = $rs->pager;
- my @categories = $c->cobrand->problems->search( { user => $c->user->id }, {
+ my @categories = $c->cobrand->problems->search( { user_id => $c->user->id }, {
columns => [ 'category' ],
distinct => 1,
order_by => [ 'category' ],