When updating from a database with prefixed tables, an error occurs "table system doesn't exists".
Line 765 of d2b_migrate.module file should be:
$result = db_query('SELECT * FROM {system}');
instead of
$result = db_query('SELECT * FROM system');
Thank you.
When updating from a database with prefixed tables, an error occurs "table system doesn't exists".
Line 765 of d2b_migrate.module file should be:
$result = db_query('SELECT * FROM {system}');
instead of
$result = db_query('SELECT * FROM system');
Thank you.