Set value type for Textarea to "TEXT".

This should fix http://issues.umbraco.org/issue/U4-5063
This commit is contained in:
Nicholas-Westby
2014-06-09 15:48:27 -07:00
parent e59768dda0
commit 23b6170106

View File

@@ -3,8 +3,8 @@ using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
[PropertyEditor(Constants.PropertyEditors.TextboxMultipleAlias, "Textarea", "textarea", IsParameterEditor = true)]
[PropertyEditor(Constants.PropertyEditors.TextboxMultipleAlias, "Textarea", "textarea", IsParameterEditor = true, ValueType = "TEXT")]
public class TextAreaPropertyEditor : PropertyEditor
{
}
}
}