diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-10-29 14:54:54 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-10-29 14:54:54 -0400 |
commit | d602f13d7f6ba7ee67a5286befd8afd9f8f0cd15 (patch) | |
tree | 3ebe8c224b8c20f947997026f6abb576546fc1b4 /phpBB/includes/captcha/plugins/phpbb_captcha_nogd_plugin.php | |
parent | 14a6e5ec73779d18cc6f09cb3b1cb4fd08f024f8 (diff) | |
download | forums-d602f13d7f6ba7ee67a5286befd8afd9f8f0cd15.tar forums-d602f13d7f6ba7ee67a5286befd8afd9f8f0cd15.tar.gz forums-d602f13d7f6ba7ee67a5286befd8afd9f8f0cd15.tar.bz2 forums-d602f13d7f6ba7ee67a5286befd8afd9f8f0cd15.tar.xz forums-d602f13d7f6ba7ee67a5286befd8afd9f8f0cd15.zip |
[ticket/11157] static public is the currently approved order.
PHPBB3-11157
Diffstat (limited to 'phpBB/includes/captcha/plugins/phpbb_captcha_nogd_plugin.php')
-rw-r--r-- | phpBB/includes/captcha/plugins/phpbb_captcha_nogd_plugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_captcha_nogd_plugin.php b/phpBB/includes/captcha/plugins/phpbb_captcha_nogd_plugin.php index 563dbf6660..6d6e2c6036 100644 --- a/phpBB/includes/captcha/plugins/phpbb_captcha_nogd_plugin.php +++ b/phpBB/includes/captcha/plugins/phpbb_captcha_nogd_plugin.php @@ -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'; } |