#19009: Textarea shape shouldn't add CR after value.

--HG--
branch : 1.x
This commit is contained in:
Bertrand Le Roy
2012-09-06 16:51:34 -07:00
parent cd7fb75f65
commit c2e2c3cfec

View File

@@ -245,7 +245,7 @@ namespace Orchard.Forms.Shapes {
}
Output.Write(select.ToString(TagRenderMode.StartTag));
Output.WriteLine(Value);
Output.Write(Value);
Output.WriteLine(select.ToString(TagRenderMode.EndTag));
}