
|
If you were logged in you would be able to see more operations.
|
|
Sesame
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
|
|
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>");
|
|
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).
|
|