diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-04-05 17:22:41 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-04-05 17:22:41 +0200 |
commit | 8bc5e2ca5a702311fc8bb48aab422da65b972cf1 (patch) | |
tree | 49771371387400b9c88e9c4faaecd55a95c9fa26 /phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php | |
parent | 8b80f81ba1c5d6c0fb84490cde58c37234a06d51 (diff) | |
parent | 2bf1c4eb32f1e668a215f1dabb42fe88e8a9cd11 (diff) | |
download | forums-8bc5e2ca5a702311fc8bb48aab422da65b972cf1.tar forums-8bc5e2ca5a702311fc8bb48aab422da65b972cf1.tar.gz forums-8bc5e2ca5a702311fc8bb48aab422da65b972cf1.tar.bz2 forums-8bc5e2ca5a702311fc8bb48aab422da65b972cf1.tar.xz forums-8bc5e2ca5a702311fc8bb48aab422da65b972cf1.zip |
Merge remote-tracking branch 'brunoais/ticket/10575' into develop
* brunoais/ticket/10575:
[ticket/10575] Adding public visibility to the methods.
[ticket/10575] Fixing non-static access to static functions get_instance
Diffstat (limited to 'phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php')
-rw-r--r-- | phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php b/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php index a63b0e448f..6c1f3bf00b 100644 --- a/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php +++ b/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php @@ -49,7 +49,7 @@ class phpbb_captcha_gd extends phpbb_default_captcha } } - function get_instance() + public static function get_instance() { $instance = new phpbb_captcha_gd(); return $instance; |