changed linebreak output of function res.writeln from <br> to <br /> (for xhtml compatibility)
This commit is contained in:
parent
5d3214979b
commit
35aa84d81d
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue