From ddd2a38ef905f57a0aa45333423f3b3e21215905 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Tue, 12 Oct 2021 10:48:15 +0200 Subject: [PATCH] Fix typo in reCAPTCHA API URL Introduced in #4293. --- .../install/files/lib/system/captcha/RecaptchaHandler.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/captcha/RecaptchaHandler.class.php b/wcfsetup/install/files/lib/system/captcha/RecaptchaHandler.class.php index 3e3d4e6940..a65842c16e 100644 --- a/wcfsetup/install/files/lib/system/captcha/RecaptchaHandler.class.php +++ b/wcfsetup/install/files/lib/system/captcha/RecaptchaHandler.class.php @@ -122,7 +122,7 @@ class RecaptchaHandler implements ICaptchaHandler $request = new Request( 'GET', \sprintf( - 'https://www.google.com/recaptcha/api/siteveify?%s', + 'https://www.google.com/recaptcha/api/siteverify?%s', \http_build_query([ 'secret' => $key, 'response' => $this->response, -- 2.20.1