diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2019-02-05 11:33:28 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2019-02-05 11:33:36 +0000 |
commit | 190fa4a8aa4f824fc797fd903a79a076bc59b7b4 (patch) | |
tree | 1ebf8f7501305d5ddec21beba3c4b6f3408bbf02 /perllib/FixMyStreet/App/Controller/Report.pm | |
parent | 265fe86bc5028d48442c994decc2fca22de473be (diff) | |
parent | 120b57d121f426ac54d390e649518b737748d58c (diff) |
Merge branch 'fix-code-starting-underscore-display'
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 a7a3328dc..12f6ec1d1 100644 --- a/perllib/FixMyStreet/App/Controller/Report.pm +++ b/perllib/FixMyStreet/App/Controller/Report.pm @@ -373,7 +373,7 @@ sub inspect : Private { my $permissions = $c->stash->{_permissions}; $c->forward('/admin/categories_for_point'); - $c->stash->{report_meta} = { map { $_->{name} => $_ } @{ $c->stash->{problem}->get_extra_fields() } }; + $c->stash->{report_meta} = { map { 'x' . $_->{name} => $_ } @{ $c->stash->{problem}->get_extra_fields() } }; if ($c->cobrand->can('council_area_id')) { my $priorities_by_category = FixMyStreet::App->model('DB::ResponsePriority')->by_categories($c->cobrand->council_area_id, @{$c->stash->{contacts}}); |