Author: lektran
Date: Sat Aug 10 05:16:25 2013
New Revision: 1512565

URL: http://svn.apache.org/r1512565
Log:
Fix typo

Modified:
    
ofbiz/trunk/framework/service/src/org/ofbiz/service/eca/ServiceEcaAction.java

Modified: 
ofbiz/trunk/framework/service/src/org/ofbiz/service/eca/ServiceEcaAction.java
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/eca/ServiceEcaAction.java?rev=1512565&r1=1512564&r2=1512565&view=diff
==============================================================================
--- 
ofbiz/trunk/framework/service/src/org/ofbiz/service/eca/ServiceEcaAction.java 
(original)
+++ 
ofbiz/trunk/framework/service/src/org/ofbiz/service/eca/ServiceEcaAction.java 
Sat Aug 10 05:16:25 2013
@@ -66,7 +66,7 @@ public class ServiceEcaAction implements
         this.serviceMode = action.getAttribute("mode");
         this.runAsUser = action.getAttribute("run-as-user");
         // support the old, inconsistent attribute name
-        if (UtilValidate.isEmail(this.runAsUser)) this.runAsUser = 
action.getAttribute("runAsUser");
+        if (UtilValidate.isEmpty(this.runAsUser)) this.runAsUser = 
action.getAttribute("runAsUser");
         this.resultMapName = action.getAttribute("result-map-name");
 
         // default is true, so anything but false is true


Reply via email to