diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2012-10-30 18:19:44 -0400 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2012-10-30 18:19:44 -0400 |
| commit | 1f248dab6f9413a67f08e008b36c9fc64489d1ce (patch) | |
| tree | 8e5c4e91baa1e23dca3bef30fd33942bca06ab90 /phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php | |
| parent | e0e3622ba9571e7fd2ab5d86e4544d9757c0ac5d (diff) | |
| parent | d602f13d7f6ba7ee67a5286befd8afd9f8f0cd15 (diff) | |
| download | forums-1f248dab6f9413a67f08e008b36c9fc64489d1ce.tar forums-1f248dab6f9413a67f08e008b36c9fc64489d1ce.tar.gz forums-1f248dab6f9413a67f08e008b36c9fc64489d1ce.tar.bz2 forums-1f248dab6f9413a67f08e008b36c9fc64489d1ce.tar.xz forums-1f248dab6f9413a67f08e008b36c9fc64489d1ce.zip | |
Merge remote-tracking branch 'p/ticket/11157' into develop
* p/ticket/11157:
[ticket/11157] static public is the currently approved order.
[ticket/11157] Fix remaining captcha spam.
[ticket/11157] get_captcha_types is an instance method.
Diffstat (limited to 'phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php')
| -rw-r--r-- | phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php b/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php index 8fc45db8cb..ec7636f511 100644 --- a/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php +++ b/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php @@ -108,7 +108,7 @@ class phpbb_captcha_qa /** * See if the captcha has created its tables. */ - function is_installed() + static public function is_installed() { global $db, $phpbb_root_path, $phpEx; @@ -124,14 +124,14 @@ class phpbb_captcha_qa /** * API function - for the captcha to be available, it must have installed itself and there has to be at least one question in the board's default lang */ - function is_available() + static public function is_available() { global $config, $db, $phpbb_root_path, $phpEx, $user; // load language file for pretty display in the ACP dropdown $user->add_lang('captcha_qa'); - if (!phpbb_captcha_qa::is_installed()) + if (!self::is_installed()) { return false; } @@ -157,7 +157,7 @@ class phpbb_captcha_qa /** * API function */ - function get_name() + static public function get_name() { return 'CAPTCHA_QA'; } @@ -612,7 +612,7 @@ class phpbb_captcha_qa $user->add_lang('acp/board'); $user->add_lang('captcha_qa'); - if (!$this->is_installed()) + if (!self::is_installed()) { $this->install(); } |
