Closed (duplicate)
Project:
Site map
Version:
5.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
18 Jun 2007 at 21:33 UTC
Updated:
18 Jun 2007 at 23:50 UTC
Hi,
on the site map page when it render a taxonomy tree, the HTML looks like:
<ul>
<li>...</li>
<ul>
<li>...</li>
</ul>
<li>...</li>
</ul>
But it's not the good way to render a tree, it result on a html syntax warning and a flat tree.
The HTML should be:
<ul>
<li>...
<ul>
<li>...</li>
</ul>
</li>
<li>...</li>
</ul>
Comments
Comment #1
frjo commentedhttp://drupal.org/node/133090