mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-08 07:10:59 +02:00
allow import of schema_version=2 xml db
This commit is contained in:
parent
88feb44216
commit
db22a6e9b8
@ -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");
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user