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)


Reply via email to