diff --git a/demos/chat/chatactns.pas b/demos/chat/chatactns.pas
index 388af30..3afed8d 100644
--- a/demos/chat/chatactns.pas
+++ b/demos/chat/chatactns.pas
@@ -52,7 +52,8 @@ procedure TChatPostMsg.Post;
const
MSG = '
(%s) %s: %s
';
begin
- Add(MSG, [FormatDateTime('yyyy-mm-dd', Now), Session.Fields['name'].AsString,
+ Add(MSG, [FormatDateTime('yyyy-mm-dd', Now),
+ StripHTMLMarkup(Session.Fields['name'].AsString),
StripHTMLMarkup(Fields['text'].AsString)]);
Save;
end;