summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xml-import.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/xml-import.php b/xml-import.php
index d5081d64f..be3948645 100644
--- a/xml-import.php
+++ b/xml-import.php
@@ -163,7 +163,7 @@
$schema_version = $root->get_elements_by_tagname('schema_version');
$schema_version = $schema_version[0]->get_content();
- if ($schema_version != MAX_SOURCE_SCHEMA_VERSION) {
+ if ($schema_version > MAX_SOURCE_SCHEMA_VERSION) {
die("Incorrect source schema version");
}