Skip to content

Commit

Permalink
Fix xmlmapfile xsd bug for label->scaledenoms (#5129)
Browse files Browse the repository at this point in the history
maxScaleDenom/minScaleDenom have been placed in the wrong xs:element, so the XSD did not validate itself.
  • Loading branch information
JuergenWeichand authored and tbonfort committed Sep 8, 2015
1 parent de2869b commit f916cad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xmlmapfile/mapfile.xsd
Expand Up @@ -346,9 +346,9 @@
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:element name="maxScaleDenom" type="xs:double" minOccurs="0"/>
<xs:element name="minScaleDenom" type="xs:double" minOccurs="0"/>
</xs:element>
<xs:element name="maxScaleDenom" type="xs:double" minOccurs="0"/>
<xs:element name="minScaleDenom" type="xs:double" minOccurs="0"/>
<xs:element name="Style" type="ms:Style" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="text" type="xs:string" minOccurs="0"/>
<xs:element name="wrap" type="xs:string" minOccurs="0"/>
Expand Down

0 comments on commit f916cad

Please sign in to comment.