1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 01:06:48 +02:00

[ticket/11157] static public is the currently approved order.

PHPBB3-11157
This commit is contained in:
Oleg Pudeyev
2012-10-29 14:54:54 -04:00
parent 14a6e5ec73
commit d602f13d7f
5 changed files with 11 additions and 11 deletions

View File

@@ -60,7 +60,7 @@ class phpbb_recaptcha extends phpbb_default_captcha
return $instance;
}
public static function is_available()
static public function is_available()
{
global $config, $user;
$user->add_lang('captcha_recaptcha');
@@ -75,7 +75,7 @@ class phpbb_recaptcha extends phpbb_default_captcha
return true;
}
public static function get_name()
static public function get_name()
{
return 'CAPTCHA_RECAPTCHA';
}