From: Andrew Dolgov Date: Fri, 2 Dec 2005 08:13:10 +0000 (+0100) Subject: allow import of schema_version=2 xml db X-Git-Tag: schema_feature_freeze_for_1.1~7 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=db22a6e9b87e3dfd6eb82c7df8849dc4595641cf;p=tt-rss.git allow import of schema_version=2 xml db --- diff --git a/xml-import.php b/xml-import.php index d35c01a9..04f3ee39 100644 --- a/xml-import.php +++ b/xml-import.php @@ -3,7 +3,7 @@ require_once "functions.php"; require_once "db.php"; - define('SOURCE_SCHEMA_VERSION', 1); + define('MAX_SOURCE_SCHEMA_VERSION', 2); define('TARGET_SCHEMA_VERSION', 2); $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); @@ -155,7 +155,7 @@ $schema_version = $root->get_elements_by_tagname('schema_version'); $schema_version = $schema_version[0]->get_content(); - if ($schema_version != SOURCE_SCHEMA_VERSION) { + if ($schema_version != MAX_SOURCE_SCHEMA_VERSION) { die("Incorrect source schema version"); }