diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2016-10-03 11:25:53 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-10-04 10:37:32 +0100 |
commit | b860aa76086db0f30b1d9ba5241b2c850e5cda90 (patch) | |
tree | 7499ffe09c403fba008bf9174613cfef861f6eb7 /perllib/FixMyStreet/App/Controller/Report.pm | |
parent | 179845c83b1a17f56c779e8f0e89317c57fa84b8 (diff) |
Restructure Inspect form into logical sections
IDs and locations at the top, then location-related actions (including
a new “navigate to this problem” button), then status and category
inputs (since these can have an effect on how we display the rest of
the form), then any status/category-related inputs, and finally inputs
for internal details like priority and traffic management.
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Report.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Report.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Report.pm b/perllib/FixMyStreet/App/Controller/Report.pm index 34392782b..cca2568f2 100644 --- a/perllib/FixMyStreet/App/Controller/Report.pm +++ b/perllib/FixMyStreet/App/Controller/Report.pm @@ -317,7 +317,7 @@ sub inspect : Private { my $update_text; if ($permissions->{report_inspect}) { - foreach (qw/detailed_location detailed_information traffic_information/) { + foreach (qw/detailed_information traffic_information/) { $problem->set_extra_metadata( $_ => $c->get_param($_) ); } |