From: Alexander Ebert Date: Fri, 5 Dec 2014 16:28:59 +0000 (+0100) Subject: Fixed class imports X-Git-Tag: 2.1.0_Beta_1~92 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=59627cff46ea775f4ba108910720cfde8ab6bb22;p=GitHub%2FWoltLab%2FWCF.git Fixed class imports --- 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); } } }