diff options
author | kajzer <[email protected]> | 2016-09-09 18:35:48 +0200 |
---|---|---|
committer | kajzer <[email protected]> | 2016-09-09 18:35:48 +0200 |
commit | a550bac7a423943b79b98c322d665cef6f16e759 (patch) | |
tree | a30b2df0aac94438f9108d326f020ed5376f5759 /src/themes/nodoka/nodoka-theme.c | |
parent | 23153c2e82294cda4f3f7db2053186da8581e19a (diff) | |
download | mate-notification-daemon-a550bac7a423943b79b98c322d665cef6f16e759.tar.bz2 mate-notification-daemon-a550bac7a423943b79b98c322d665cef6f16e759.tar.xz |
Fix: properly escape text
Diffstat (limited to 'src/themes/nodoka/nodoka-theme.c')
-rw-r--r-- | src/themes/nodoka/nodoka-theme.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/themes/nodoka/nodoka-theme.c b/src/themes/nodoka/nodoka-theme.c index 628a415..dcb8449 100644 --- a/src/themes/nodoka/nodoka-theme.c +++ b/src/themes/nodoka/nodoka-theme.c @@ -891,10 +891,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=\"#000000\">%s</span>", quoted); - g_free(quoted); + if (strstr(body, "&") || strstr(body, "<") || strstr(body, ">") || strstr(body, "'") || strstr(body, """)) + { + str = g_strdup_printf("<span color=\"#000000\">%s</span>", body); + } + else + { + quoted = g_markup_escape_text(body, -1); + str = g_strdup_printf("<span color=\"#000000\">%s</span>", quoted); + g_free(quoted); + } gtk_label_set_markup(GTK_LABEL(windata->body_label), str); g_free(str); |