| Title | typo in EditLinkTag.java |
| Date | 03-Oct-2006 22:51:50 EEST |
| Version | 2.4.x. |
| Submitter | 84.10.105.116 |
| Bug criticality | CosmeticBug |
| Browser version | |
| Bug status | ClosedBug |
| PageProvider used | |
| Servlet Container | |
| Operating System | |
| URL | |
| Java version |
There is typo in EditLinkTag.java (v.1.15.), in line 136 we've got:
+"\" accesskey=\"" + m_accesskey + "\" title=\"" + m_title + "\"\">");
which should look like this
+"\" accesskey=\"" + m_accesskey + "\" title=\"" + m_title + "\">");
This mistake makes JSPWiki to render triple quotes for title attribute, like in following HTML:
<a href="/Edit.jsp?page=RecentChanges" accesskey="" title=""">Edit page</a>
fixed in v2.4.69