diff options
author | Mormegil <mormegil@centrum.cz> | 2012-05-31 19:16:41 +0200 |
---|---|---|
committer | umherirrender <umherirrender_de.wp@web.de> | 2012-05-31 19:16:41 +0200 |
commit | 6c39a1714bc4d6581218baed375599bd48a0d4ae (patch) | |
tree | c256203841fc63a400fbea9fba9b4b81dc1110a4 /docs/export-0.7.xsd | |
parent | 912c30998749b7afdf91381adf8bf093edbb7594 (diff) | |
download | mediawikicore-6c39a1714bc4d6581218baed375599bd48a0d4ae.tar.gz mediawikicore-6c39a1714bc4d6581218baed375599bd48a0d4ae.zip |
(bug 35264) Wrong type used for <ns> in export.xsd
Change-Id: I6d5a399d3fde4d70a8814c4f8d107765c8e3da96
Diffstat (limited to 'docs/export-0.7.xsd')
-rw-r--r-- | docs/export-0.7.xsd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/export-0.7.xsd b/docs/export-0.7.xsd index 1871a65876dc..c2656a320327 100644 --- a/docs/export-0.7.xsd +++ b/docs/export-0.7.xsd @@ -20,6 +20,7 @@ Version 0.7 adds a unique identity constraint for both page and revision identifiers. See also bug 4220. + Fix type for <ns> from "positiveInteger" to "nonNegativeInteger" to allow 0 The canonical URL to the schema document is: http://www.mediawiki.org/xml/export-0.7.xsd @@ -121,7 +122,7 @@ <element name="title" type="string"/> <!-- Namespace in canonical form --> - <element name="ns" type="positiveInteger"/> + <element name="ns" type="nonNegativeInteger"/> <!-- optional page ID number --> <element name="id" type="positiveInteger" minOccurs="0"/> |