3.15 xml export bug

When exporting a simple report to xml I get numbers formatted as &#xx where is should be &#xx; where xx is the number + 48.

The suspected culprit for this is the TfrxXMLExport.ChangeReturns method which has the following lines that look wrong:

135: s := '&#' + IntToStr(StrToInt(Result) + 48);
should read
s := '&#' + IntToStr(StrToInt(Result) + 48) + ';';
with 138 being changed to Inc(i, 5);

No for the fun task of rebuilding it all! Whoohooo!!! ;)

Comments

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.