Author: jleroux
Date: Fri Jun 24 08:51:05 2016
New Revision: 1750050

URL: http://svn.apache.org/viewvc?rev=1750050&view=rev
Log:
Fixes an issue related done with "Autocompletion for Compound Widget" - 
https://issues.apache.org/jira/browse/OFBIZ-7061 reported by Swapnil M Mane

<<xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>> was missing, this 
happened in r1749488. It was the only case like that (checked in Eclipse using 
validate, there are tons of other mnior issues BTW)

Modified:
    ofbiz/trunk/framework/common/widget/PortalPageForms.xml

Modified: ofbiz/trunk/framework/common/widget/PortalPageForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/widget/PortalPageForms.xml?rev=1750050&r1=1750049&r2=1750050&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/widget/PortalPageForms.xml (original)
+++ ofbiz/trunk/framework/common/widget/PortalPageForms.xml Fri Jun 24 08:51:05 
2016
@@ -18,7 +18,8 @@ specific language governing permissions
 under the License.
 -->
 
-<forms xmlns="http://ofbiz.apache.org/Widget-Form"; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd";>
+<forms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
+        xmlns="http://ofbiz.apache.org/Widget-Form"; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd";>
 
     <form name="ListPortalPages" type="list" list-name="portalPages" 
separate-columns="true"
         odd-row-style="alternate-row" header-row-style="header-row-2" 
default-table-style="basic-table hover-bar">


Reply via email to