You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by mc...@apache.org on 2011/06/04 06:57:23 UTC

svn commit: r1131313 - /struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java

Author: mcucchiara
Date: Sat Jun  4 04:57:23 2011
New Revision: 1131313

URL: http://svn.apache.org/viewvc?rev=1131313&view=rev
Log:
Corrected field errors setter

Modified:
    struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java

Modified: struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java?rev=1131313&r1=1131312&r2=1131313&view=diff
==============================================================================
--- struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java (original)
+++ struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java Sat Jun  4 04:57:23 2011
@@ -127,7 +127,7 @@ public class ChainingInterceptor extends
 
     @Inject(value = "struts.xwork.chaining.copyFieldErrors", required = false)
     public void setCopyFieldErrors(String copyFieldErrors) {
-        this.copyErrors = "true".equalsIgnoreCase(copyFieldErrors);
+        this.copyFieldErrors = "true".equalsIgnoreCase(copyFieldErrors);
     }
 
     @Inject(value = "struts.xwork.chaining.copyMessages", required = false)