Author: lektran
Date: Thu Apr 8 04:12:40 2010
New Revision: 931779
URL:
http://svn.apache.org/viewvc?rev=931779&view=revLog:
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);