mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-09 10:16:36 +02:00
[ticket/11696] Rename db_tools.php so it can be autoloaded
PHPBB3-11696
This commit is contained in:
@@ -110,12 +110,8 @@ class phpbb_captcha_qa
|
||||
*/
|
||||
static public function is_installed()
|
||||
{
|
||||
global $db, $phpbb_root_path, $phpEx;
|
||||
global $db;
|
||||
|
||||
if (!class_exists('phpbb_db_tools', false))
|
||||
{
|
||||
include("$phpbb_root_path/includes/db/db_tools.$phpEx");
|
||||
}
|
||||
$db_tool = new phpbb_db_tools($db);
|
||||
|
||||
return $db_tool->sql_table_exists(CAPTCHA_QUESTIONS_TABLE);
|
||||
@@ -297,12 +293,8 @@ class phpbb_captcha_qa
|
||||
*/
|
||||
function install()
|
||||
{
|
||||
global $db, $phpbb_root_path, $phpEx;
|
||||
global $db;
|
||||
|
||||
if (!class_exists('phpbb_db_tools'))
|
||||
{
|
||||
include("$phpbb_root_path/includes/db/db_tools.$phpEx");
|
||||
}
|
||||
$db_tool = new phpbb_db_tools($db);
|
||||
|
||||
$tables = array(CAPTCHA_QUESTIONS_TABLE, CAPTCHA_ANSWERS_TABLE, CAPTCHA_QA_CONFIRM_TABLE);
|
||||
|
Reference in New Issue
Block a user