diff options
author | Struan Donald <struan@exo.org.uk> | 2011-09-20 16:11:16 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-09-20 16:11:16 +0100 |
commit | 77f31e8c96c727ea5ab9cf217cfd924074e8f3ed (patch) | |
tree | 71a4a47702e8afe5d84fbede43d7aff57ae11dbd /perllib/FixMyStreet/App/Controller | |
parent | 227163b2ae15f90707c8e8d9be26daea6c7d2474 (diff) | |
parent | 891ce12c012e2c02e8f024f3701ca9ceef5a4bbf (diff) |
Merge remote branch 'origin/master'
Diffstat (limited to 'perllib/FixMyStreet/App/Controller')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Report/New.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Report/New.pm b/perllib/FixMyStreet/App/Controller/Report/New.pm index ffbb5a161..1e6a3a088 100644 --- a/perllib/FixMyStreet/App/Controller/Report/New.pm +++ b/perllib/FixMyStreet/App/Controller/Report/New.pm @@ -666,7 +666,7 @@ sub process_report : Private { $report->detail( $detail ); # set these straight from the params - $report->category( _ $params{category} ); + $report->category( _ $params{category} ) if $params{category}; my $areas = $c->stash->{all_areas}; $report->areas( ',' . join( ',', sort keys %$areas ) . ',' ); |