Skip to content
Permalink
Browse files Browse the repository at this point in the history
Fixed text issue in private messages of forum
  • Loading branch information
mgesing committed May 10, 2021
1 parent fe4a039 commit 5b4e60a
Showing 1 changed file with 2 additions and 1 deletion.
@@ -1,5 +1,6 @@
@model PrivateMessageModel
@using SmartStore.Web.Models.PrivateMessages;
@using SmartStore.Core.Html;
@{
Layout = "_Layout";
Html.AddTitleParts(T("PageTitle.ViewPM").Text);
Expand Down Expand Up @@ -28,7 +29,7 @@
<div class="col-sm-9">
<div class="card">
<div class="card-body" dir="auto">
@Html.Raw(Model.Message)
@Html.Raw(HtmlUtils.SanitizeHtml(Model.Message, true))
</div>
</div>
</div>
Expand Down

0 comments on commit 5b4e60a

Please sign in to comment.