Greg Huber created WW-3927:
------------------------------

             Summary: com.opensymphony.xwork2.interceptor.ParametersInterceptor 
incorrect message in log
                 Key: WW-3927
                 URL: https://issues.apache.org/jira/browse/WW-3927
             Project: Struts 2
          Issue Type: Bug
          Components: Core Interceptors
    Affects Versions: 2.3.7
         Environment: centos/tomcat
            Reporter: Greg Huber
            Priority: Minor


Hello,

Think the notifyDeveloper(..) message should be before the return true; 
statement!

{code:java}
    protected boolean isExcluded(String paramName) {
        if (!this.excludeParams.isEmpty()) {
            for (Pattern pattern : excludeParams) {
                Matcher matcher = pattern.matcher(paramName);
                if (matcher.matches()) {
                  // messsage here?  
                  return true;
                }
            }
        }
        notifyDeveloper("Parameter [#0] is on the excludeParams list of 
patterns!", paramName);
        return false;
    }
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to