Commit 16ac9467 authored by Fabien Morin's avatar Fabien Morin

correct the not XHTML valid parts :

 - some close markups wich were never opened
 - a br markup wich was not closed
 - a width attribute on the td markup wich not exist (I replace it using new 
   a css selector in erp5.css)


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@19976 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 77716f71
......@@ -236,7 +236,7 @@ class MatrixBoxWidget(Widget.Widget):
first_tab = tab[1] or ''
header = """\
<!-- Matrix Content -->
%s<br>
%s<br/>
<div class="MatrixContent">
<table cellpadding="0" cellspacing="0" border="0">
""" % first_tab
......@@ -244,13 +244,9 @@ class MatrixBoxWidget(Widget.Widget):
# Create the footer. This should be replaced by DTML
# And work as some kind of parameter
footer = """\
</div>
</td>
</div>
</tr>
<tr>
<td colspan="%s" width="100" align="center" valign="middle"
class="Data">
<td colspan="%s" align="center" valign="middle"
class="Data footer">
</td>
</tr>
</table>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment