diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-12-06 16:34:02 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-12-06 17:10:07 +0100 |
commit | ec90f2b380a598a3dbf7ada0e95878d9d1b85cbe (patch) | |
tree | f2cbf3419cbf1c0fea7391f03dfb418cc5c9dc72 /phpBB/phpbb/captcha | |
parent | [ticket/13421] Always require the interface when possible (diff) | |
download | phpbb-ec90f2b380a598a3dbf7ada0e95878d9d1b85cbe.tar.gz phpbb-ec90f2b380a598a3dbf7ada0e95878d9d1b85cbe.tar.bz2 phpbb-ec90f2b380a598a3dbf7ada0e95878d9d1b85cbe.zip |
[ticket/13421] Move tools to subdirectory
PHPBB3-13421
Diffstat (limited to 'phpBB/phpbb/captcha')
-rw-r--r-- | phpBB/phpbb/captcha/plugins/qa.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/captcha/plugins/qa.php b/phpBB/phpbb/captcha/plugins/qa.php index a7ba994cc3..ca242a96dc 100644 --- a/phpBB/phpbb/captcha/plugins/qa.php +++ b/phpBB/phpbb/captcha/plugins/qa.php @@ -115,7 +115,7 @@ class qa { global $db; - $db_tool = new \phpbb\db\tools($db); + $db_tool = new \phpbb\db\tools\tools($db); return $db_tool->sql_table_exists($this->table_captcha_questions); } @@ -308,7 +308,7 @@ class qa { global $db; - $db_tool = new \phpbb\db\tools($db); + $db_tool = new \phpbb\db\tools\tools($db); $tables = array($this->table_captcha_questions, $this->table_captcha_answers, $this->table_qa_confirm); |