diff options
author | Matthew Somerville <matthew@mysociety.org> | 2019-07-05 10:25:27 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2019-07-05 10:25:27 +0100 |
commit | 03d116e079a251f4c099d3334502d711f42e1c71 (patch) | |
tree | eefbb7c86e9657b6a2575a8f9976356f4a31d874 | |
parent | a181e8aec84bf99037bce9d4dbb05215f886227b (diff) |
Remove quote mark in update emails.
-rw-r--r-- | templates/email/default/_email_comment_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/email/default/_email_comment_list.html b/templates/email/default/_email_comment_list.html index 49076c2b3..346efadfb 100644 --- a/templates/email/default/_email_comment_list.html +++ b/templates/email/default/_email_comment_list.html @@ -5,7 +5,7 @@ <img style="[% list_item_photo_style %]" src="[% inline_image(update.get_first_image_fp) %]" alt=""> </a> [%~ END %] - [% update.item_text | html_para | replace('<p>', '<p style="' _ list_item_p_style _ '">“') %] + [% update.item_text | html_para | replace('<p>', '<p style="' _ list_item_p_style _ '">') %] <p style="[% list_item_date_style %]"> [%~ update.item_name | html IF update.item_name AND NOT update.item_anonymous -%] [% '(' _ cobrand.prettify_dt(update.confirmed) _ ') ' IF cobrand.include_time_in_update_alerts -%] |