summaryrefslogtreecommitdiff
path: root/src/themes/slider/theme.c
diff options
context:
space:
mode:
authorkajzer <[email protected]>2016-09-09 18:35:48 +0200
committerkajzer <[email protected]>2016-09-09 18:35:48 +0200
commita550bac7a423943b79b98c322d665cef6f16e759 (patch)
treea30b2df0aac94438f9108d326f020ed5376f5759 /src/themes/slider/theme.c
parent23153c2e82294cda4f3f7db2053186da8581e19a (diff)
downloadmate-notification-daemon-a550bac7a423943b79b98c322d665cef6f16e759.tar.bz2
mate-notification-daemon-a550bac7a423943b79b98c322d665cef6f16e759.tar.xz
Fix: properly escape text
Diffstat (limited to 'src/themes/slider/theme.c')
-rw-r--r--src/themes/slider/theme.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/themes/slider/theme.c b/src/themes/slider/theme.c
index 86440b0..cf4724a 100644
--- a/src/themes/slider/theme.c
+++ b/src/themes/slider/theme.c
@@ -513,9 +513,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, "&amp;") || strstr(body, "&lt;") || strstr(body, "&gt;") || strstr(body, "&apos;") || strstr(body, "&quot;"))
+ {
+ 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')
{