diff options
author | Matthew Somerville <matthew@mysociety.org> | 2020-01-21 09:10:32 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2020-01-21 09:10:32 +0000 |
commit | 831da874e57e84170a5e2a27e5a08599e5b19812 (patch) | |
tree | 57ad302e34879e0113ce46045061b78a96f9d412 | |
parent | d87a4661bc49d1918cd7fcd617c7f2c1f9474263 (diff) |
Allow update signup even if updates disallowed.
It is possible for a report to be closed to public updates, but it still
could receive updates (eg updates only from problem reporter, or updates
only by staff), so we should still allow people to sign up.
-rw-r--r-- | templates/web/base/report/display_tools.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/base/report/display_tools.html b/templates/web/base/report/display_tools.html index 4f6031ec5..4be1bca3c 100644 --- a/templates/web/base/report/display_tools.html +++ b/templates/web/base/report/display_tools.html @@ -10,7 +10,7 @@ c.cobrand.moniker == 'fixmystreet' ? 'Unsuitable?' : loc('Report abuse') %]</a></li> [% END %] - [% IF NOT c.cobrand.updates_disallowed(problem) AND c.cobrand.moniker != 'zurich' %] + [% IF c.cobrand.moniker != 'zurich' %] <li><a rel="nofollow" id="key-tool-report-updates" class="feed js-feed" href="[% c.uri_for( '/alert/subscribe', { id => problem.id } ) %]">[% loc('Get updates' ) %]</a></li> [% END %] [% IF c.cobrand.moniker == 'fixmystreet' %] |