diff options
author | Bruno Ais <brunoaiss@gmail.com> | 2012-04-05 14:16:56 +0100 |
---|---|---|
committer | Bruno Ais <brunoaiss@gmail.com> | 2012-04-05 14:16:56 +0100 |
commit | 2bf1c4eb32f1e668a215f1dabb42fe88e8a9cd11 (patch) | |
tree | a85dda809eeb673763c42769e01910a95692d540 /phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php | |
parent | c8da69d9c26e0017f13abb2c954e52c4cd593fdc (diff) | |
download | forums-2bf1c4eb32f1e668a215f1dabb42fe88e8a9cd11.tar forums-2bf1c4eb32f1e668a215f1dabb42fe88e8a9cd11.tar.gz forums-2bf1c4eb32f1e668a215f1dabb42fe88e8a9cd11.tar.bz2 forums-2bf1c4eb32f1e668a215f1dabb42fe88e8a9cd11.tar.xz forums-2bf1c4eb32f1e668a215f1dabb42fe88e8a9cd11.zip |
[ticket/10575] Adding public visibility to the methods.
Added public visibility to the methods
PHPBB3-10575
Diffstat (limited to 'phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php')
-rw-r--r-- | phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php index 67dc2f3747..70c24a8c30 100644 --- a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php +++ b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php @@ -54,7 +54,7 @@ class phpbb_recaptcha extends phpbb_default_captcha $this->response = request_var('recaptcha_response_field', ''); } - static function get_instance() + public static function get_instance() { $instance = new phpbb_recaptcha(); return $instance; |