Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
Description
There is a bug in the way the XSL transformations handle names anchor tags.
Given the following XML:
<a name="Mirror"></a>
We end up with this HTML:
<a class="doclink" href=""/>
Which causes problems in rendering (as least for Mozilla). It should be:
<a class="doclink" name="Mirror"/>
Currently this is only used in the download.xml/html page.