diff options
author | Dave Arter <davea@mysociety.org> | 2016-04-12 15:10:20 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2016-07-08 15:28:21 +0100 |
commit | 235701b34251db9b05a148d25664a2ae545ec5c4 (patch) | |
tree | a5305fd254d9fc147d63bff3b33bad9b00f1409f /perllib/FixMyStreet/App/Controller/Tokens.pm | |
parent | 6b02b84a5359066b242ddfb18d6998a0b2957360 (diff) |
Restructure & clarify problem confirmation page
The message shown to the user if the report was sent to a
council other than the cobrand owner was confusing so the wording
has been clarified. Also added a call to action to view the report
on FMS.com or the cobranded FMS.
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Tokens.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Tokens.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Tokens.pm b/perllib/FixMyStreet/App/Controller/Tokens.pm index 38f344250..da017c57f 100644 --- a/perllib/FixMyStreet/App/Controller/Tokens.pm +++ b/perllib/FixMyStreet/App/Controller/Tokens.pm @@ -32,7 +32,7 @@ sub confirm_problem : Path('/P') { $c->stash->{report} = { id => 123, title => 'Title of Report', - bodies_str => 'True', + bodies_str => '1', url => '/report/123', service => $c->get_param('service'), }; @@ -195,7 +195,7 @@ sub confirm_update : Path('/C') { $c->stash->{problem} = { id => 123, title => 'Title of Report', - bodies_str => 'True', + bodies_str => '1', url => '/report/123', }; return; |