aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/default/tokens/confirm_problem.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/web/default/tokens/confirm_problem.html')
-rw-r--r--templates/web/default/tokens/confirm_problem.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/web/default/tokens/confirm_problem.html b/templates/web/default/tokens/confirm_problem.html
index 2437c1cd9..b6d82968f 100644
--- a/templates/web/default/tokens/confirm_problem.html
+++ b/templates/web/default/tokens/confirm_problem.html
@@ -6,7 +6,7 @@
[% IF c.cobrand.is_council %]
Thank you. You have successfully confirmed your report
and this will now be investigated by the council.
-You can <a href="[% c.cobrand.url_for_report( problem ) %]">view the problem on this site</a>.
+You can <a href="[% c.cobrand.base_url_for_report( problem ) %][% problem.url %]">view the problem on this site</a>.
</p>
<p>Your reference for this problem is [% problem.id %], please quote it in any enquiries.
@@ -19,8 +19,9 @@ You can <a href="[% c.cobrand.url_for_report( problem ) %]">view the problem on
END;
tprintf(
- loc( '. You can <a href="%s">view the problem on this site</a>.' ),
- c.cobrand.url_for_report( problem )
+ loc( '. You can <a href="%s%s">view the problem on this site</a>.' ),
+ c.cobrand.base_url_for_report( problem ),
+ problem.url
);
%]
[% END %]