summaryrefslogtreecommitdiff
path: root/src/themes/coco/coco-theme.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/themes/coco/coco-theme.c')
-rw-r--r--src/themes/coco/coco-theme.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/themes/coco/coco-theme.c b/src/themes/coco/coco-theme.c
index ca742b4..c1fa929 100644
--- a/src/themes/coco/coco-theme.c
+++ b/src/themes/coco/coco-theme.c
@@ -506,10 +506,16 @@ 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);
- str = g_strdup_printf(
- "<span color=\"#EAEAEA\">%s</span>", quoted);
- g_free(quoted);
+ if (strstr(body, "&amp;") || strstr(body, "&lt;") || strstr(body, "&gt;") || strstr(body, "&apos;") || strstr(body, "&quot;"))
+ {
+ str = g_strdup_printf("<span color=\"#EAEAEA\">%s</span>", body);
+ }
+ else
+ {
+ quoted = g_markup_escape_text(body, -1);
+ str = g_strdup_printf("<span color=\"#EAEAEA\">%s</span>", quoted);
+ g_free(quoted);
+ }
gtk_label_set_markup (GTK_LABEL (windata->body_label), str);
g_free(str);