changed linebreak output of function res.writeln from <br> to <br /> (for xhtml compatibility)

This commit is contained in:
Tobi Schäfer 2002-05-16 15:37:37 +00:00
parent 5d3214979b
commit 35aa84d81d

View file

@ -162,7 +162,7 @@ public class ResponseTrans implements Externalizable {
buffer = new StringBuffer (512); buffer = new StringBuffer (512);
if (what != null) if (what != null)
buffer.append (what.toString ()); buffer.append (what.toString ());
buffer.append ("<br>\r\n"); buffer.append ("<br />\r\n");
} }
/** /**