diff -r 6037d5c3a06c -r 50f361d39a1e finch/plugins/gnthistory.c --- a/finch/plugins/gnthistory.c Tue May 20 10:59:21 2014 +0530 +++ b/finch/plugins/gnthistory.c Sat May 24 02:32:01 2014 +0530 @@ -115,15 +115,15 @@ header = g_strdup_printf(_("Conversation with %s on %s:
"), alias, purple_date_format_full(localtime(&((PurpleLog *)logs->data)->time))); - purple_conversation_write(c, "", header, mflag, time(NULL)); + purple_conversation_write_system_message(c, header, mflag); g_free(header); if (flags & PURPLE_LOG_READ_NO_NEWLINE) purple_str_strip_char(history, '\n'); - purple_conversation_write(c, "", history, mflag, time(NULL)); + purple_conversation_write_system_message(c, history, mflag); g_free(history); - purple_conversation_write(c, "", "
", mflag, time(NULL)); + purple_conversation_write_system_message(c, "
", mflag); g_list_foreach(logs, (GFunc)purple_log_free, NULL); g_list_free(logs);