Line 468 says:
$output = '<p><ul id="links_weblink_list"><li>' . l($link['title'], $link['href'], $link['attributes']) . '</li></ul>';
Should be:
$output = '<p><ul id="links_weblink_list"><li>' . l($link['title'], $link['href'], $link['attributes']) . '</li></ul></p>';
Comments
Comment #1
avpadernoThere are many
<p>tags that aren't properly closed.That is something I can see in all the modules of the project.
Comment #2
avpadernoThis is still an issue with the latest version for Drupal 5. As the Drupal output is XHTML, every open tag needs to be closed.
In many points, the tag <p> is not appropriately closed.
Comment #3
avpadernoI am closing this issue, since it's for a not supported Drupal version.