<div dir="ltr">Hi,<br>
<br>
If I look into the code I can see in WriterAppender writeFooter<br>
<br>
String h = layout.getFileFooter();<br>
if ((h != null) && (this.writer != null)) {<br>
try {<br>
this.writer.write(h);<br>
String pf = layout.getPresentationFooter();<br>
if (pf != null) {<br>
this.writer.write(pf);<br>
}<br>
<br>
And if I look into HTMLLayoutBase I see<br>
<br>
getFileFooter => </body></html><br>
getPresentationFooter => </table><br>
<br>
which means we are first closing the HTML and then the TABLE?<br>
<br>
I think this is a bug.<br>
<br>
Thanks & regards!<br>
Natan Cox</div>