[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 ;) // 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) // 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(); $database_update_info = database_update_info();