diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2011-07-08 20:33:16 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-07-09 01:53:07 -0400 |
commit | 5b5c2274232bee869548a17399645a70cf550577 (patch) | |
tree | c7d273f3cab3c2e6dfc1b65f3cbc4052251071b5 /phpBB/install/database_update.php | |
parent | 919ba8eb3fd454d9a485bea7daf791a0858dec94 (diff) | |
download | forums-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.php | 2 |
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(); |