[Webwork-devel] #484303 URLTag bug
Brought to you by:
baldree,
rickardoberg
|
From: Matt B. <ma...@sm...> - 2001-11-22 01:17:36
|
Looks like there is a bug with the URL tag.
Test http://localhost:8080/webwork/rss/index.jsp fails.
i.e.
<a href="<webwork:url value="'start.action'"/> returns
"'start.action'". It should return "start.action"
//old
public int doEndTag() throws JspException
{
...
// Add page
link.append(valueAttr);
//suggested fix
public int doEndTag() throws JspException
{
...
// Add page
link.append(value);
|