Skip to content

Commit bea8673

Browse files
committed
Enable allowed HTML for order notes
1 parent 9709959 commit bea8673

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Libraries/SmartStore.Services/Orders/OrderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static string FormatOrderNoteText(this OrderNote orderNote)
2424
if (String.IsNullOrEmpty(text))
2525
return string.Empty;
2626

27-
text = SmartStore.Core.Html.HtmlUtils.FormatText(text, false, true, false, false, false, false);
27+
text = SmartStore.Core.Html.HtmlUtils.FormatText(text, false, true, true, false, false, false);
2828

2929
return text;
3030
}

0 commit comments

Comments
 (0)