ParametersInterceptor - isAccepted / acceptedParamNames won't work with a comma seperated list of param names

2009-02-09 Thread Torsten Krah
I wonder if someone faced this behavior before, wheter this is known or wanted. XWork ParametersInterceptor Code: protected boolean isAccepted(String paramName) { if (!this.acceptedParams.isEmpty()) { for (Pattern pattern : acceptedParams) { Matcher

Re: ParametersInterceptor - isAccepted / acceptedParamNames won't work with a comma seperated list of param names

2009-02-09 Thread Musachy Barroso
Yes, that was broken and was fixed in 2.1 to: protected boolean isAccepted(String paramName) { if (!this.acceptParams.isEmpty()) { for (Pattern pattern : acceptParams) { Matcher matcher = pattern.matcher(paramName); if (matcher.matches()) {