Commit 9c12685
Fix invalid xml serialization of DateTime value
Serialization emitted wrong string for the XML dateTime type
Wrong: <uax:DateTime>2020-01-31 12:00:00</uax:DateTime>
Correct: <uax:DateTime>2020-01-31T12:00:00</uax:DateTime>
Notice the missing T seperator in the text representation of the value
attribute.
In XML the parser expects a string according to this format.
https://www.w3.org/TR/xmlschema-2/#dateTime
Fixes issue #13431 parent 3012acf commit 9c12685
1 file changed
+2
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
377 | 377 | | |
378 | 378 | | |
379 | 379 | | |
| 380 | + | |
| 381 | + | |
380 | 382 | | |
381 | 383 | | |
382 | 384 | | |
| |||
0 commit comments