fixed bug preventing use of non-string parameters like multiparts
This commit is contained in:
@@ -446,8 +446,8 @@ public abstract class AbstractMvcView implements View {
|
||||
}
|
||||
|
||||
public Object getValue(Object context) throws EvaluationException {
|
||||
ParameterMap map = (ParameterMap) context;
|
||||
return map.get(parameterName);
|
||||
ParameterMap parameters = (ParameterMap) context;
|
||||
return parameters.asMap().get(parameterName);
|
||||
}
|
||||
|
||||
public Class getValueType(Object context) {
|
||||
|
||||
Reference in New Issue
Block a user