Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Version 2
-
None
-
None
-
Windows XP
Description
Saver.java does not properly convert the Greater Than (>) sign to > when it is contains inside an element or attribute. However it seems to correctly convert the &, < symbols correctly.
For example if have following fragment of input XML:
<FareDisplayOptions>
<PF2 PF2Ind="<>" PF3Allow="<>" PF3Rule="<>"
</PF2>
</FareDisplayOptions>
It gets converted to: (Notice that the < gets converted correclty, but the > does not)
<FareDisplayOptions>
<PF2 PF2Ind="<>" PF3Allow="<>" PF3Rule="<>"
</PF2>
</FareDisplayOptions>