You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Lukasz Lenart (JIRA)" <ji...@apache.org> on 2017/04/01 06:59:41 UTC

[jira] [Resolved] (WW-4777) Bug in AliasInterceptor when used to aliases http parameters

     [ 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)