diff options
Diffstat (limited to 'web')
-rwxr-xr-x | web/alert.cgi | 4 | ||||
-rwxr-xr-x | web/index.cgi | 18 |
2 files changed, 11 insertions, 11 deletions
diff --git a/web/alert.cgi b/web/alert.cgi index 61a6fe7c2..59b6607a4 100755 --- a/web/alert.cgi +++ b/web/alert.cgi @@ -40,6 +40,10 @@ sub main { Thank you for trying to confirm your alert. We seem to have an error ourselves though, so <a href="%s">please let us know what went on</a> and we'll look into it. EOF + my %vars = (error => $out); + my $cobrand_page = Page::template_include('error', $q, Page::template_root($q), %vars); + $out = $cobrand_page if $cobrand_page; + } } elsif ($q->param('rss')) { $out = alert_rss($q); diff --git a/web/index.cgi b/web/index.cgi index d4141c1f5..66680e603 100755 --- a/web/index.cgi +++ b/web/index.cgi @@ -751,17 +751,7 @@ EOF $vars{photo_field} = $photo_input; } - if ($q->{site} eq 'scambs') { - $vars{text_notes} = <<EOF; -<p>Please note:</p> -<ul> -<li>Please be polite, concise and to the point.</li> -<li>Please do not be abusive.</li> -<li>Writing your message entirely in block capitals makes it hard to read, -as does a lack of punctuation.</li> -</ul> -EOF - } elsif ($q->{site} ne 'emptyhomes') { + if ($q->{site} ne 'emptyhomes') { $vars{text_notes} = <<EOF; <p>Please note:</p> <ul> @@ -775,6 +765,12 @@ as does a lack of punctuation.</li> problems that can be fixed. If your problem is not appropriate for submission via this site remember that you can contact your council directly using their own website.</li> +<li> +FixMyStreet and the Guardian are providing this service in +partnership in <a href="faq#privacy">certain cities</a>. In those cities, both have access to +any information submitted, including names and email addresses, and will use it only to ensure the +smooth running of the service, in accordance with their privacy policies. +</li> </ul> EOF } |