This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push: new 41813a903b Fixed: Add auto-parameters-form option to on-event-update-area link in xml form (OFBIZ-12684) 41813a903b is described below commit 41813a903ba86eb1f1618f2039fbc25635339dac Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Tue Aug 30 16:35:11 2022 +0200 Fixed: Add auto-parameters-form option to on-event-update-area link in xml form (OFBIZ-12684) In few previous commits I mixed up things with OFBIZ-12680. I'll remove comments there, sorry for that. This should possibly fixes a DTD issue on on-event-update-area in StoreForms.xml by fixing a typo put in with few previous commits (that can be ignored) --- framework/widget/dtd/widget-common.xsd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/widget/dtd/widget-common.xsd b/framework/widget/dtd/widget-common.xsd index b360f46a2e..9c4f97fc97 100644 --- a/framework/widget/dtd/widget-common.xsd +++ b/framework/widget/dtd/widget-common.xsd @@ -525,9 +525,9 @@ under the License. <xs:element name="auto-parameters-form"> <xs:complexType> <xs:sequence> - <xs:element minOccurs="0" maxOccurs="unbounded" ref="exclude" /> + <xs:element minOccurs="0" ref="exclude" /> </xs:sequence> - <xs:attribute name="form-name" type="xs:string"/> + <xs:attribute name="form-name" type="xs:string"> <xs:annotation> <xs:documentation>See OFBIZ-12684.</xs:documentation> </xs:annotation>