From c270166daa475cf96e494b6c84b705a4a2f73282 Mon Sep 17 00:00:00 2001 From: dubslow Date: Tue, 18 Nov 2014 21:47:52 -0600 Subject: [PATCH] fix #811 --- src/widget/tool/chatactions/systemmessageaction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget/tool/chatactions/systemmessageaction.cpp b/src/widget/tool/chatactions/systemmessageaction.cpp index 506370871..21b260201 100644 --- a/src/widget/tool/chatactions/systemmessageaction.cpp +++ b/src/widget/tool/chatactions/systemmessageaction.cpp @@ -25,5 +25,5 @@ SystemMessageAction::SystemMessageAction(const QString &message, const QString & QString SystemMessageAction::getMessage() { - return QString("
" + message + "
"); + return QString("
" + toHtmlChars(message) + "
"); }