diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-12-10 00:03:24 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-12-10 00:03:24 +0100 |
commit | d22fa412c4ec3d52c3a1d41bfb9f968bbbf3a94e (patch) | |
tree | 27495229af76de3996f8a2996dee1c6e52cc93c2 /phpBB/phpbb/captcha/plugins | |
parent | 8a357181492ef7c41ed6289ef1c5e8e0e4bdd6be (diff) | |
parent | ec90f2b380a598a3dbf7ada0e95878d9d1b85cbe (diff) | |
download | forums-d22fa412c4ec3d52c3a1d41bfb9f968bbbf3a94e.tar forums-d22fa412c4ec3d52c3a1d41bfb9f968bbbf3a94e.tar.gz forums-d22fa412c4ec3d52c3a1d41bfb9f968bbbf3a94e.tar.bz2 forums-d22fa412c4ec3d52c3a1d41bfb9f968bbbf3a94e.tar.xz forums-d22fa412c4ec3d52c3a1d41bfb9f968bbbf3a94e.zip |
Merge pull request #3220 from nickvergessen/ticket/13421
Ticket/13421 Introduce an interface for db\tools.php
Diffstat (limited to 'phpBB/phpbb/captcha/plugins')
-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); |