Changed write_text to write_raw when generating a table <from graybeard@optusnet.com.au>

svn: r1260
This commit is contained in:
Don Allingham 2003-01-19 15:15:07 +00:00
parent eea72f5ac1
commit dff9714b6e

View File

@ -728,7 +728,7 @@ class WebReport(Report.Report):
doc.write_text(name) doc.write_text(name)
doc.end_link() doc.end_link()
if col_len <= 0 and end_col == 0: if col_len <= 0 and end_col == 0:
doc.write_text('</td><td valign="top">') doc.write_raw('</td><td valign="top">')
doc.start_paragraph('IndexLabel') doc.start_paragraph('IndexLabel')
doc.write_text(_("%s (continued)") % name[0]) doc.write_text(_("%s (continued)") % name[0])
doc.end_paragraph() doc.end_paragraph()