From 59627cff46ea775f4ba108910720cfde8ab6bb22 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Fri, 5 Dec 2014 17:28:59 +0100 Subject: [PATCH] Fixed class imports --- .../files/lib/system/captcha/RecaptchaHandler.class.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/wcfsetup/install/files/lib/system/captcha/RecaptchaHandler.class.php b/wcfsetup/install/files/lib/system/captcha/RecaptchaHandler.class.php index 847861e542..7a7ff7a039 100644 --- a/wcfsetup/install/files/lib/system/captcha/RecaptchaHandler.class.php +++ b/wcfsetup/install/files/lib/system/captcha/RecaptchaHandler.class.php @@ -1,5 +1,7 @@ validate($this->challenge, $this->response); + RecaptchaHandler::getInstance()->validate($this->challenge, $this->response); } else { // V2 - \wcf\system\recaptcha\RecaptchaHandlerV2::getInstance()->validate($this->response); + RecaptchaHandlerV2::getInstance()->validate($this->response); } } } -- 2.20.1