From 18986b7edf33b22e6bf3b4023dfcc12a0c78fb65 Mon Sep 17 00:00:00 2001 From: Stefan Hajnoczi Date: Sun, 15 Jan 2012 09:49:24 +0000 Subject: [PATCH] notifications: do not HTML-escape patch change notifications Patch change notifications are text/plain emails and should not HTML-escape patch names. This means quotes and ampersands in patch names should not be turned into " and & HTML entities. Signed-off-by: Stefan Hajnoczi Signed-off-by: Jeremy Kerr --- templates/patchwork/patch-change-notification.mail | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/patchwork/patch-change-notification.mail b/templates/patchwork/patch-change-notification.mail index d86a6af..19a2a09 100644 --- a/templates/patchwork/patch-change-notification.mail +++ b/templates/patchwork/patch-change-notification.mail @@ -2,7 +2,7 @@ Hello, The following patch{{notifications|length|pluralize:"es"}} (submitted by you) {{notifications|length|pluralize:"has,have"}} been updated in patchwork: {% for notification in notifications %} - * {{notification.patch.name}} + * {{notification.patch.name|safe}} - http://{{site.domain}}{{notification.patch.get_absolute_url}} was: {{notification.orig_state}} now: {{notification.patch.state}} -- 2.39.2