PagingNavigation's javadoc contains malformed html snippet
----------------------------------------------------------
Key: WICKET-1770
URL: https://issues.apache.org/jira/browse/WICKET-1770
Project: Wicket
Issue Type: Improvement
Affects Versions: 1.3.4
Reporter: Andrea Aime
Fix For: 1.3.5, 1.4-M4
PagingNavigation shows the following snippet:
{code:html}
<td wicket:id="navigation">
<a wicket:id="pageLink" href="SearchCDPage.html">
<span wicket:id="pageNumber">1</>
</a>
</td>
{code}
it should be:
{code:html}
<td wicket:id="navigation">
<a wicket:id="pageLink" href="SearchCDPage.html">
<span wicket:id="pageNumber">1</span>
</a>
</td>
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.