1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 02:06:32 +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

@@ -55,7 +55,7 @@ class phpbb_captcha_gd extends phpbb_default_captcha
return $instance;
}
public static function is_available()
static public function is_available()
{
global $phpbb_root_path, $phpEx;
@@ -80,7 +80,7 @@ class phpbb_captcha_gd extends phpbb_default_captcha
return true;
}
public static function get_name()
static public function get_name()
{
return 'CAPTCHA_GD';
}