Skip to content

Commit ced639a

Browse files
authored
Allow digits in communication class type definition
Our company vendor prefix "N98" is not allowed. The XSD prohibits the usage of digits.
1 parent 02e1c6b commit ced639a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/Communication/etc/communication.xsd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
</xs:documentation>
6666
</xs:annotation>
6767
<xs:restriction base="xs:string">
68-
<xs:pattern value="[a-zA-Z\\]+" />
68+
<xs:pattern value="[a-zA-Z]+[a-zA-Z0-9\\]+" />
6969
<xs:minLength value="4" />
7070
</xs:restriction>
7171
</xs:simpleType>

0 commit comments

Comments
 (0)