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!!!
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