aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/database_update.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2011-07-08 20:33:16 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2011-07-09 01:53:07 -0400
commit5b5c2274232bee869548a17399645a70cf550577 (patch)
treec7d273f3cab3c2e6dfc1b65f3cbc4052251071b5 /phpBB/install/database_update.php
parent919ba8eb3fd454d9a485bea7daf791a0858dec94 (diff)
downloadforums-5b5c2274232bee869548a17399645a70cf550577.tar
forums-5b5c2274232bee869548a17399645a70cf550577.tar.gz
forums-5b5c2274232bee869548a17399645a70cf550577.tar.bz2
forums-5b5c2274232bee869548a17399645a70cf550577.tar.xz
forums-5b5c2274232bee869548a17399645a70cf550577.zip
[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
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r--phpBB/install/database_update.php2
1 files changed, 1 insertions, 1 deletions
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();