You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by le...@apache.org on 2010/04/08 06:12:40 UTC

svn commit: r931779 - /ofbiz/trunk/framework/birt/src/org/ofbiz/birt/container/BirtContainer.java

Author: lektran
Date: Thu Apr  8 04:12:40 2010
New Revision: 931779

URL: http://svn.apache.org/viewvc?rev=931779&view=rev
Log:
Fix copy/paste error (incorrect property default), good thing I review my one commits :-)

Modified:
    ofbiz/trunk/framework/birt/src/org/ofbiz/birt/container/BirtContainer.java

Modified: ofbiz/trunk/framework/birt/src/org/ofbiz/birt/container/BirtContainer.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/birt/src/org/ofbiz/birt/container/BirtContainer.java?rev=931779&r1=931778&r2=931779&view=diff
==============================================================================
--- ofbiz/trunk/framework/birt/src/org/ofbiz/birt/container/BirtContainer.java (original)
+++ ofbiz/trunk/framework/birt/src/org/ofbiz/birt/container/BirtContainer.java Thu Apr  8 04:12:40 2010
@@ -99,7 +99,7 @@ public class BirtContainer implements Co
         delegator = DelegatorFactory.getDelegator(delegatorName);
 
         // get the dispatcher
-        dispatcherName = ContainerConfig.getPropertyValue(cc, "dispatcher-name", "JavaMailDispatcher");
+        dispatcherName = ContainerConfig.getPropertyValue(cc, "dispatcher-name", "birt-dispatcher");
         dispatcher = GenericDispatcher.getLocalDispatcher(dispatcherName, delegator);
 
         context.put("delegator", delegator);