SMACK-868: Fix XHTMLText producing invalid XML

Este commit está contenido en:
Eng ChongMeng 2019-05-06 00:38:22 +02:00 cometido por Paul Schaub
padre 11775ed6b0
commit dd903bec95
Firmado por: vanitasvitae
ID de clave GPG: 62BEE9264BF17311
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -105,7 +105,7 @@ public class XHTMLText {
private XHTMLText appendOpenBodyTag(String style, String lang) {
text.halfOpenElement(Message.BODY);
text.xmlnsAttribute(NAMESPACE);
text.optElement(STYLE, style);
text.optAttribute(STYLE, style);
text.xmllangAttribute(lang);
text.rightAngleBracket();
return this;