History | Log In     View a printable version of the current page. Get help!  
Issue Details [XML]

Key: SES-174
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Trivial Trivial
Assignee: Arjohn Kampman
Reporter: Peter Mika
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Sesame

Incorrect html formatting in HtmlAdminMsgWriter

Created: 05/Jul/05 01:23 PM   Updated: 23/Sep/05 05:29 PM
Component/s: Admin (add/remove statements)
Affects Version/s: 1.1-RC2, 1.1-RC1, 1.0.4, 1.0.3, 1.0.2, 1.0.1, 1.0, 1.1, 1.1.1, 1.1.3, 1.2-RC1, 1.1.2, 1.2-RC2, 1.2
Fix Version/s: 1.2.1


 Description   
The dumpstatement method of HtmlAdminMsgWriter incorrectly encodes the </i> closing tag when writing out the subject of a statement.

Fix:

_argLine("\tsubject : <i>" + XmlUtil.escapeChars(object.toString() + "</i>"));

should be

_argLine("\tsubject : <i>" + XmlUtil.escapeChars(object.toString()) + "</i>");







 All   Comments   Change History      Sort Order:
Comment by Arjohn Kampman [05/Jul/05 02:36 PM]
Two issues were fixed: the mentioned escaping of the end tag </i> and the labeling of all three parts of a statement as "subject" (which should be subject, predicate and object).