aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_install.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2013-07-14 07:29:29 -0700
committerNils Adermann <naderman@naderman.de>2013-07-14 07:29:29 -0700
commit3d9e57d0cec8f6d7883f8de1e461580047d18709 (patch)
tree4fe7066739fd30e47c3448ef00118562cf72c519 /phpBB/includes/functions_install.php
parent1e37d97909ccf52b08e2a809ea8a9365c824d8de (diff)
parentf302cbe175e99f90448458f44a499eeb33f75261 (diff)
downloadforums-3d9e57d0cec8f6d7883f8de1e461580047d18709.tar
forums-3d9e57d0cec8f6d7883f8de1e461580047d18709.tar.gz
forums-3d9e57d0cec8f6d7883f8de1e461580047d18709.tar.bz2
forums-3d9e57d0cec8f6d7883f8de1e461580047d18709.tar.xz
forums-3d9e57d0cec8f6d7883f8de1e461580047d18709.zip
Merge pull request #1558 from nickvergessen/ticket/11696
[ticket/11696] Rename db_tools.php so it can be autoloaded
Diffstat (limited to 'phpBB/includes/functions_install.php')
-rw-r--r--phpBB/includes/functions_install.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/phpBB/includes/functions_install.php b/phpBB/includes/functions_install.php
index 8978e3fadd..bd0ffaaf00 100644
--- a/phpBB/includes/functions_install.php
+++ b/phpBB/includes/functions_install.php
@@ -184,12 +184,6 @@ function dbms_select($default = '', $only_20x_options = false)
*/
function get_tables(&$db)
{
- if (!class_exists('phpbb_db_tools'))
- {
- global $phpbb_root_path, $phpEx;
- require($phpbb_root_path . 'includes/db/db_tools.' . $phpEx);
- }
-
$db_tools = new phpbb_db_tools($db);
return $db_tools->sql_list_tables();