brianandle commented on code in PR #559:
URL: https://github.com/apache/struts/pull/559#discussion_r891901572
##########
core/src/main/java/com/opensymphony/xwork2/interceptor/ParametersInterceptor.java:
##########
@@ -354,7 +407,86 @@ protected boolean isExcluded(String paramName) {
}
return false;
}
+
+ public void setAcceptedValuePatterns(String commaDelimitedPatterns) {
Review Comment:
And yes it would need to be defined such as:
<package name="default" extends="struts-default">
<interceptors>
<interceptor-stack name="myCustomStack">
<interceptor-ref name="defaultStack">
<param
name="params.excludeValuePatterns">.*\$\{.*?\}.*,.*%\{.*?\}.*</param>
</interceptor-ref>
</interceptor-stack>
</interceptors>
</package>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]