Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 974 → Rev 973

/kickup/trunk/src/ak/kickup/core/taglib/ExtendedLinkTag.java
13,18 → 13,6
public class ExtendedLinkTag
extends ForwardLinkTag
{
protected boolean backpath = false;
 
public boolean getBackpath()
{
return this.backpath;
}
 
public void setBackpath(boolean backpath)
{
this.backpath = backpath;
}
 
protected String paramId2 = null;
 
public String getParamId2()
172,7 → 160,6
public void release()
{
super.release();
backpath = false;
paramId2 = null;
paramName2 = null;
paramProperty2 = null;
229,7 → 216,7
throw new JspException(messages.getMessage("rewrite.url", ex.toString()));
}
 
if(url == null || !backpath) return url;
if(url == null) return null;
 
// add backpath
String forwardParams = findBackPath().getForwardParams();