1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +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

@@ -45,12 +45,12 @@ class phpbb_captcha_nogd extends phpbb_default_captcha
return $instance;
}
public static function is_available()
static public function is_available()
{
return true;
}
public static function get_name()
static public function get_name()
{
return 'CAPTCHA_NO_GD';
}