diff options
-rw-r--r-- | framework/Web/UI/WebControls/TReCaptcha.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/framework/Web/UI/WebControls/TReCaptcha.php b/framework/Web/UI/WebControls/TReCaptcha.php index a5a360c3..429f194f 100644 --- a/framework/Web/UI/WebControls/TReCaptcha.php +++ b/framework/Web/UI/WebControls/TReCaptcha.php @@ -217,12 +217,7 @@ class TReCaptcha extends TWebControl implements IValidatable // if we're in a callback, then schedule re-rendering of the control // if not, don't do anything, because a new challenge will be rendered anyway if ($this->Page->IsCallback) - $this->Page->ClientScript->registerEndScript($this->getClientID().'::refresh', implode(' ', array( - // work-around for "ReCaptchaState is undefined" bug - // (if there's no previous instance yet, regenerating the token is not needed anyway) - 'if (typeof ReCaptchaState != "undefined") '. - ' Recaptcha.reload();', - ))); + $this->Page->CallbackClient->jQuery($this->getClientID().' #recaptcha_reload','click'); } public function renderContents($writer) |