1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-05 15:16:16 +02:00

[ticket/10003] Use phpbb_db_tools in database_update.php.

Now that the copy of db tools has been deleted, change which
class name is used.

PHPBB3-10003
This commit is contained in:
Oleg Pudeyev 2011-07-08 20:33:16 -04:00
parent 919ba8eb3f
commit 5b5c227423

View File

@ -180,7 +180,7 @@ $db->sql_freeresult($result);
// We do not include DB Tools here, because we can not be sure the file is up-to-date ;)
// Instead, this file defines a clean db_tools version (we are also not able to provide a different file, else the database update will not work standalone)
$db_tools = new updater_db_tools($db, true);
$db_tools = new phpbb_db_tools($db, true);
$database_update_info = database_update_info();