Closed nicolasrabier closed 5 years ago
@nicolasrabier for this test, it's probably going to make sense to add another test case into the convertSgmlToXmlProvivder()
:
The alignment is really wonky there I noticed too :laughing:
May also make sense to add a fixture with a functional test too
Thanks @nicolasrabier !
Thanks @nicolasrabier !
No worries!
In OFX files, some tag values like in MEMO tag contains special characters such as the '&' sign which generate an issue with simplexml_load_string function.
LibXMLError::__set_state(array( 'level' => 3, 'code' => 68, 'column' => 30, 'message' => 'xmlParseEntityRef: no name ', 'file' => '', 'line' => 27, )),
This code simply converts the '&' sign to its html code (&) which is tolerated by simplexml_load_string.
Fixes #53