Merge pull request #663 from fabrixxm/moveme

uimport: remove db scheme version check
2022.09-rc
fabrixxm 2013-04-08 06:17:51 -07:00
commit d905f0a3e3
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -101,11 +101,13 @@ function import_account(&$a, $file) {
return;
}
/*
// this is not required as we remove columns in json not in current db schema
if ($account['schema'] != DB_UPDATE_VERSION) {
notice(t("Error! I can't import this file: DB schema version is not compatible."));
return;
}
*/
// check for username
$r = q("SELECT uid FROM user WHERE nickname='%s'", $account['user']['nickname']);