Skip to content

Commit 2bcd219

Browse files
committed
Text widget not liking apostrophe (3.3.0.3)
1 parent 2e5cc82 commit 2bcd219

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

BlogEngine/BlogEngine.Core/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
[assembly: CLSCompliant(false)]
2020
[assembly: ComVisible(false)]
2121
[assembly: AllowPartiallyTrustedCallers]
22-
[assembly: AssemblyVersion("3.3.0.2")]
22+
[assembly: AssemblyVersion("3.3.0.3")]
2323
[assembly: SecurityRules(SecurityRuleSet.Level1)]

BlogEngine/BlogEngine.NET/Custom/Widgets/TextBox/edit.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
if (IsPost)
88
{
9-
settings["content"] = Request.Form["txtContent"];
9+
settings["content"] = Request.Unvalidated.Form["txtContent"];
1010
Common.SaveSettings(settings, widgetId);
1111
}
1212
if (settings != null && settings.Count > 0)

0 commit comments

Comments
 (0)