summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael McConville <mmcconville@mykolab.com>2015-09-07 14:59:13 -0400
committerMichael McConville <mmcconville@mykolab.com>2015-09-07 14:59:13 -0400
commitfb7d85f3a8c031bafafeefe32f1a4d95f96fca7e (patch)
tree174f09f361c1e35fef65e997107db586b29db049
parent670e664a66f8a99c7d05a67328f66ee2a0dcf69f (diff)
downloadpidgin-fb7d85f3a8c031bafafeefe32f1a4d95f96fca7e.tar.gz
Don't render smileys in the History plugin's headers. Fixes #16747
-rw-r--r--pidgin/plugins/history.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pidgin/plugins/history.c b/pidgin/plugins/history.c
index 3d2507343b..86189b27bd 100644
--- a/pidgin/plugins/history.c
+++ b/pidgin/plugins/history.c
@@ -134,7 +134,7 @@ static void historize(PurpleConversation *c)
header_date = purple_date_format_full(localtime(&((PurpleLog *)logs->data)->time));
header = g_strdup_printf(_("<b>Conversation with %s on %s:</b><br>"), escaped_alias, header_date);
- gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), header, options);
+ gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), header, options|GTK_IMHTML_NO_SMILEY);
g_free(header);
g_free(escaped_alias);