<div dir="ltr">Hi,<br>
<br>
If I look into the code I can see in WriterAppender writeFooter<br>
<br>
 &nbsp; &nbsp; &nbsp;String h = layout.getFileFooter();<br>
 &nbsp; &nbsp; &nbsp;if ((h != null) &amp;&amp; (this.writer != null)) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp;try {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;this.writer.write(h);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;String pf = layout.getPresentationFooter();<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (pf != null) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;this.writer.write(pf);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
<br>
And if I look into HTMLLayoutBase I see<br>
<br>
&nbsp;getFileFooter =&gt; &nbsp; &nbsp; &lt;/body&gt;&lt;/html&gt;<br>
&nbsp;getPresentationFooter =&gt; &lt;/table&gt;<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 &amp; regards!<br>
Natan Cox</div>