Details
-
Bug
-
Status: Resolved
-
Resolution: Fixed
-
2.3.0
-
None
-
None
-
Operating System: All
Platform: All
-
17294
Description
This bug is present in all versions 2.0.0 - 2.3.0
-------------------------------------------------
props file
XMLMessages.properties
contains incorrect definition of
InvalidCharInAttValue = An invalid XML character (Unicode: 0x
{2}) was found
in the value of attribute \"
correct is:
InvalidCharInAttValue = An invalid XML character (Unicode: 0x{0}) was found
in the value of attribute \"{1}
\".
On occurence of this error in
XML11DocumentScannerImpl.java
and
XMLScanner.java
only one param value is passed:
reportFatalError("InvalidCharInAttValue",
new Object[]
);
correct call is:
reportFatalError("InvalidCharInAttValue",
new Object[]
);
MaT