Author: lektran
Date: Sat May 24 13:32:31 2008
New Revision: 659870
URL:
http://svn.apache.org/viewvc?rev=659870&view=revLog:
Fix for OFBIZ-1802 reported by Ashish Vijaywargiya, Error in Data File Tool. The uiLabelMap was being used in the bsh script without being defined.
Modified:
ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/datafile/viewdatafile.bsh
Modified: ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/datafile/viewdatafile.bsh
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/datafile/viewdatafile.bsh?rev=659870&r1=659869&r2=659870&view=diff==============================================================================
--- ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/datafile/viewdatafile.bsh (original)
+++ ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/datafile/viewdatafile.bsh Sat May 24 13:32:31 2008
@@ -23,6 +23,7 @@
import org.ofbiz.base.util.*;
import org.ofbiz.datafile.*;
+uiLabelMap = UtilProperties.getResourceBundleMap("WebtoolsUiLabels", locale);
List messages = new LinkedList();
String dataFileSave = request.getParameter("DATAFILE_SAVE");