summaryrefslogtreecommitdiff
path: root/src/themes/standard/theme.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/themes/standard/theme.c')
-rw-r--r--src/themes/standard/theme.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/themes/standard/theme.c b/src/themes/standard/theme.c
index ba44fcd..f13d174 100644
--- a/src/themes/standard/theme.c
+++ b/src/themes/standard/theme.c
@@ -857,9 +857,16 @@ void set_notification_text(GtkWindow* nw, const char* summary, const char* body)
gtk_label_set_markup(GTK_LABEL(windata->summary_label), str);
g_free(str);
- quoted = g_markup_escape_text(body, -1);
- gtk_label_set_markup(GTK_LABEL(windata->body_label), quoted);
- g_free(quoted);
+ if (strstr(body, "&") || strstr(body, "<") || strstr(body, ">") || strstr(body, "'") || strstr(body, """))
+ {
+ gtk_label_set_markup(GTK_LABEL(windata->body_label), body);
+ }
+ else
+ {
+ quoted = g_markup_escape_text(body, -1);
+ gtk_label_set_markup(GTK_LABEL(windata->body_label), quoted);
+ g_free(quoted);
+ }
if (body == NULL || *body == '\0')
{