svn commit: r791436 - /ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/web.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r791436 - /ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/web.xml

jacopoc
Author: jacopoc
Date: Mon Jul  6 10:49:23 2009
New Revision: 791436

URL: http://svn.apache.org/viewvc?rev=791436&view=rev
Log:
Fixed bug (wrong position of a <context-param> element) reported by Vadiraj Deshpande in OFBIZ-2704.

Modified:
    ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/web.xml

Modified: ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/web.xml?rev=791436&r1=791435&r2=791436&view=diff
==============================================================================
--- ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/web.xml (original)
+++ ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/web.xml Mon Jul  6 10:49:23 2009
@@ -59,6 +59,12 @@
     <description>The location of the main-decorator screen to use for this webapp; referred to as a context variable in screen def XML files.</description>
   </context-param>
 
+  <context-param>
+    <param-name>GeronimoMultiOfbizInstances</param-name>
+    <param-value>true</param-value>
+    <description>This is only used in case of Geronimo or WASCE using OFBiz multi-instances. It allows to retrieve ofbiz.home value set in JVM env</description>
+  </context-param>
+
     <filter>
         <filter-name>ContextFilter</filter-name>
         <display-name>ContextFilter</display-name>
@@ -160,10 +166,4 @@
   </security-constraint>
 -->
 
-  <context-param>
-    <param-name>GeronimoMultiOfbizInstances</param-name>
-    <param-value>true</param-value>
-    <description>This is only used in case of Geronimo or WASCE using OFBiz multi-instances. It allows to retrieve ofbiz.home value set in JVM env</description>
-  </context-param>
-
 </web-app>