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 2008/05/24 22:32:32 UTC

svn commit: r659870 - /ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/datafile/viewdatafile.bsh

Author: lektran
Date: Sat May 24 13:32:31 2008
New Revision: 659870

URL: http://svn.apache.org/viewvc?rev=659870&view=rev
Log:
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");