aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2019-12-17 10:46:12 +0000
committerMatthew Somerville <matthew@mysociety.org>2019-12-17 10:46:16 +0000
commit0d72820baed2982405bccdc8640a24c106a9ea2a (patch)
tree83e2e48c29ce9efc3313a26604edc886065189fc
parent81f9418ddbc3f3e373525386c3bf540f1b3fe833 (diff)
Use Unicode chars in email summaries, not escaped.
-rw-r--r--templates/email/default/alert-update.html2
-rw-r--r--templates/email/default/contact.html2
-rw-r--r--templates/email/fixamingata/contact.html2
-rw-r--r--templates/email/lincolnshire/contact.html2
4 files changed, 4 insertions, 4 deletions
diff --git a/templates/email/default/alert-update.html b/templates/email/default/alert-update.html
index 1f1591b3d..0f7c30481 100644
--- a/templates/email/default/alert-update.html
+++ b/templates/email/default/alert-update.html
@@ -1,7 +1,7 @@
[%
title = report.title | html;
-email_summary = "New updates on &ldquo;" _ title _ "&rdquo;";
+email_summary = "New updates on “" _ title _ "”";
email_columns = 2;
PROCESS '_email_settings.html';
diff --git a/templates/email/default/contact.html b/templates/email/default/contact.html
index 6eac4282a..301245f1b 100644
--- a/templates/email/default/contact.html
+++ b/templates/email/default/contact.html
@@ -2,7 +2,7 @@
subject_html = subject | html;
name = form_name | html;
-email_summary = "&ldquo;" _ subject_html _ "&rdquo; &ndash; Message from " _ name _ " on " _ host;
+email_summary = "“" _ subject_html _ "” – Message from " _ name _ " on " _ host;
email_footer = "Sent via " _ host _ ", IP " _ ip;
email_columns = 1;
diff --git a/templates/email/fixamingata/contact.html b/templates/email/fixamingata/contact.html
index 2b71eaea8..b182e48a5 100644
--- a/templates/email/fixamingata/contact.html
+++ b/templates/email/fixamingata/contact.html
@@ -2,7 +2,7 @@
subject_html = subject | html;
name = form_name | html;
-email_summary = "&ldquo;" _ subject_html _ "&rdquo; &ndash; Meddelande från " _ name _ " hos " _ host;
+email_summary = "“" _ subject_html _ "” – Meddelande från " _ name _ " hos " _ host;
email_footer = "Skickat via " _ host _ " och IP-adressen " _ ip;
email_columns = 1;
diff --git a/templates/email/lincolnshire/contact.html b/templates/email/lincolnshire/contact.html
index 23a3c01ff..a1be947de 100644
--- a/templates/email/lincolnshire/contact.html
+++ b/templates/email/lincolnshire/contact.html
@@ -2,7 +2,7 @@
subject_html = subject | html;
name = form_name | html;
-email_summary = "&ldquo;" _ subject_html _ "&rdquo; &ndash; Message from " _ name _ " on " _ host;
+email_summary = "“" _ subject_html _ "” – Message from " _ name _ " on " _ host;
email_footer = "Sent via " _ host _ ", IP " _ ip;
email_columns = 1;