aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-05-11 03:14:14 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-05-11 03:14:14 +0200
commit2c0c8a580f23225d6757ba49c70c01b29447fb0a (patch)
tree3d83f9be4f491aee2dad62d0eb4dff20bc729f21
parent46fcf9c8e4d1c3c867b7013a25f915af2b531d1b (diff)
downloadforums-2c0c8a580f23225d6757ba49c70c01b29447fb0a.tar
forums-2c0c8a580f23225d6757ba49c70c01b29447fb0a.tar.gz
forums-2c0c8a580f23225d6757ba49c70c01b29447fb0a.tar.bz2
forums-2c0c8a580f23225d6757ba49c70c01b29447fb0a.tar.xz
forums-2c0c8a580f23225d6757ba49c70c01b29447fb0a.zip
[ticket/10170] Include www in hostname in language strings.
PHPBB3-10170
-rw-r--r--phpBB/language/en/captcha_recaptcha.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/language/en/captcha_recaptcha.php b/phpBB/language/en/captcha_recaptcha.php
index fd7e3853b7..9b2fb2049d 100644
--- a/phpBB/language/en/captcha_recaptcha.php
+++ b/phpBB/language/en/captcha_recaptcha.php
@@ -37,14 +37,14 @@ if (empty($lang) || !is_array($lang))
$lang = array_merge($lang, array(
'RECAPTCHA_LANG' => 'en',
- 'RECAPTCHA_NOT_AVAILABLE' => 'In order to use reCaptcha, you must create an account on <a href="http://www.google.com/recaptcha">google.com/recaptcha</a>.',
+ 'RECAPTCHA_NOT_AVAILABLE' => 'In order to use reCaptcha, you must create an account on <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.',
'CAPTCHA_RECAPTCHA' => 'reCaptcha',
'RECAPTCHA_INCORRECT' => 'The visual confirmation code you submitted was incorrect',
'RECAPTCHA_PUBLIC' => 'Public reCaptcha key',
- 'RECAPTCHA_PUBLIC_EXPLAIN' => 'Your public reCaptcha key. Keys can be obtained on <a href="http://www.google.com/recaptcha">google.com/recaptcha</a>.',
+ 'RECAPTCHA_PUBLIC_EXPLAIN' => 'Your public reCaptcha key. Keys can be obtained on <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.',
'RECAPTCHA_PRIVATE' => 'Private reCaptcha key',
- 'RECAPTCHA_PRIVATE_EXPLAIN' => 'Your private reCaptcha key. Keys can be obtained on <a href="http://www.google.com/recaptcha">google.com/recaptcha</a>.',
+ 'RECAPTCHA_PRIVATE_EXPLAIN' => 'Your private reCaptcha key. Keys can be obtained on <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.',
'RECAPTCHA_EXPLAIN' => 'In an effort to prevent automatic submissions, we require that you enter both of the words displayed into the text field underneath.',
));