Skip to content

Switch URLs to HTTPS #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions templates/_captcha.tpl
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{#
Recaptcha template
Author:
Author:
* for the script: the reCAPTCHA team of Google
* for the modifications: François Cardinaux, CH 1207 Geneva (http://bit.ly/qTaona)
#}
{% if m.recaptcha.is_enabled %}

{% with m.recaptcha.public_key as public_key %}
<script
<script
type="text/javascript"
src="http://www.google.com/recaptcha/api/challenge?k={{ public_key|urlencode }}">
src="https://www.google.com/recaptcha/api/challenge?k={{ public_key|urlencode }}">
</script>
<noscript>
<iframe
rc="http://www.google.com/recaptcha/api/noscript?k={{ public_key|urlencode }}"
<iframe
src="https://www.google.com/recaptcha/api/noscript?k={{ public_key|urlencode }}"
height="300" width="500" frameborder="0"></iframe>
<br>
<textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
<input
type="hidden"
<input
type="hidden"
name="recaptcha_response_field"
value="manual_challenge">
</noscript>
Expand Down