Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Won't Fix
-
Affects Version/s: 1.0 RC2
-
Fix Version/s: None
-
Component/s: Paging/Sorting
-
Labels:None
-
Application server:tomcat 5
Description
TagConstants.AMPERSAND = "&";
should be
TagConstants.AMPERSAND = "&";
the only place this constant is used is in Href.java where it is
used to seperate url request parameters. the "&" seperating request parameters need not be escaped.
it affects the urls built by displaytag in for example sortable="true" headings.
should be
TagConstants.AMPERSAND = "&";
the only place this constant is used is in Href.java where it is
used to seperate url request parameters. the "&" seperating request parameters need not be escaped.
it affects the urls built by displaytag in for example sortable="true" headings.
http://www.w3.org/MarkUp/html-spec/html-spec_foot.html#FOOT26