From 5b5c2274232bee869548a17399645a70cf550577 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev Date: Fri, 8 Jul 2011 20:33:16 -0400 Subject: [PATCH] [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 --- phpBB/install/database_update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index d73848c871..7b6deb5727 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -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();