Actions
Task #2347
closedask.libreoffice.org should query recaptcha/api.js with the instance's language
Start date:
Due date:
% Done:
0%
Tags:
URL:
Description
(Or just use hl=en
.) Right now the reCAPTCHA API is queried with an inconsistent hl
parameter:
$ curl -sS 'https://ask.libreoffice.org/en/account/signup/?login_provider=local' | grep -F 'https://www.google.com/recaptcha/api.js' > </div> <script src='https://www.google.com/recaptcha/api.js?hl=en'></script> <script type="text/javascript">
Then a few seconds later:
$ curl -sS 'https://ask.libreoffice.org/en/account/signup/?login_provider=local' | grep -F 'https://www.google.com/recaptcha/api.js' > </div> <script src='https://www.google.com/recaptcha/api.js?hl=pt'></script> <script type="text/javascript">
Actions