diff options
author | Andreas Fischer <bantu@phpbb.com> | 2010-10-18 10:59:00 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2010-10-18 10:59:00 +0200 |
commit | d6aa25ede149a2d483b064f5ce96abcf49458ee3 (patch) | |
tree | 8c2e194bd59054dabfd023746575781494555269 | |
parent | 6eb061ef0c2ed91e2afcf6447b11d0755d6ef67c (diff) | |
download | forums-d6aa25ede149a2d483b064f5ce96abcf49458ee3.tar forums-d6aa25ede149a2d483b064f5ce96abcf49458ee3.tar.gz forums-d6aa25ede149a2d483b064f5ce96abcf49458ee3.tar.bz2 forums-d6aa25ede149a2d483b064f5ce96abcf49458ee3.tar.xz forums-d6aa25ede149a2d483b064f5ce96abcf49458ee3.zip |
[ticket/9853] Change recaptcha theme from default to 'clean'.
Change recaptcha theme to 'clean' to better coordinate with the color schemes
of prosilver and subsilver2. The default red theme doesn't really fit prosilver
and subsilver2.
PHPBB3-9853
-rw-r--r-- | phpBB/styles/prosilver/template/captcha_recaptcha.html | 1 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/captcha_recaptcha.html | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/captcha_recaptcha.html b/phpBB/styles/prosilver/template/captcha_recaptcha.html index 97d2cda28e..51a1615bd5 100644 --- a/phpBB/styles/prosilver/template/captcha_recaptcha.html +++ b/phpBB/styles/prosilver/template/captcha_recaptcha.html @@ -16,6 +16,7 @@ // <![CDATA[ var RecaptchaOptions = { lang : '{LA_RECAPTCHA_LANG}', + theme : 'clean', tabindex : <!-- IF $CAPTCHA_TAB_INDEX -->{$CAPTCHA_TAB_INDEX}<!-- ELSE -->10<!-- ENDIF --> }; // ]]> diff --git a/phpBB/styles/subsilver2/template/captcha_recaptcha.html b/phpBB/styles/subsilver2/template/captcha_recaptcha.html index 3776c77ea4..ec09b28ef5 100644 --- a/phpBB/styles/subsilver2/template/captcha_recaptcha.html +++ b/phpBB/styles/subsilver2/template/captcha_recaptcha.html @@ -9,6 +9,7 @@ // <![CDATA[ var RecaptchaOptions = { lang : '{LA_RECAPTCHA_LANG}', + theme : 'clean', tabindex : <!-- IF $CAPTCHA_TAB_INDEX -->{$CAPTCHA_TAB_INDEX}<!-- ELSE -->10<!-- ENDIF --> }; // ]]> |