aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2009-07-20 10:22:13 +0000
committerHenry Sudhof <kellanved@phpbb.com>2009-07-20 10:22:13 +0000
commitff60fc9c1e6565eb12f4c8f4591c5cafc012bfb7 (patch)
treebbaf43d7b7c4a8398729223366a09cdb923905f8 /phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
parentb3767cd1436bf2b579ad2e0c1c17f55881d4dc4e (diff)
downloadforums-ff60fc9c1e6565eb12f4c8f4591c5cafc012bfb7.tar
forums-ff60fc9c1e6565eb12f4c8f4591c5cafc012bfb7.tar.gz
forums-ff60fc9c1e6565eb12f4c8f4591c5cafc012bfb7.tar.bz2
forums-ff60fc9c1e6565eb12f4c8f4591c5cafc012bfb7.tar.xz
forums-ff60fc9c1e6565eb12f4c8f4591c5cafc012bfb7.zip
fixing back links
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9801 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php')
-rw-r--r--phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
index 41ce242e91..f148b12656 100644
--- a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
+++ b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
@@ -36,7 +36,7 @@ class phpbb_recaptcha extends phpbb_default_captcha
{
global $config, $db, $user;
- $user->add_lang('recaptcha');
+ $user->add_lang('captcha_recaptcha');
parent::init($type);
$this->challenge = request_var('recaptcha_challenge_field', '');
$this->response = request_var('recaptcha_response_field', '');
@@ -51,7 +51,7 @@ class phpbb_recaptcha extends phpbb_default_captcha
function is_available()
{
global $config, $user;
- $user->add_lang('recaptcha');
+ $user->add_lang('captcha_recaptcha');
return (isset($config['recaptcha_pubkey']) && !empty($config['recaptcha_pubkey']));
}