[
https://issues.apache.org/jira/browse/WW-4777?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Lukasz Lenart resolved WW-4777.
-------------------------------
Resolution: Duplicate
Cool, closing this one - thanks :)
> Bug in AliasInterceptor when used to aliases http parameters
> ------------------------------------------------------------
>
> Key: WW-4777
> URL: https://issues.apache.org/jira/browse/WW-4777
> Project: Struts 2
> Issue Type: Bug
> Components: Core Interceptors
> Affects Versions: 2.5.5
> Reporter: Florent Fourcade
> Priority: Minor
> Fix For: 2.5.8
>
>
> When using AliasInterceptor to aliases http parameters, the AliasInterceptor
> put in the value stack an instance of Parameter when it should call
> getValue() on this instance.
> The problem seems to be located at line 168 of AliasInterceptor :
> {code}
> value = new Evaluated(contextParameters.get(name));
> {code}
> when it could be something like :
> {code}
> Parameter param = contextParameters.get(name);
> if (param != null){
> value = new Evaluated(param.getValue());
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)