diff options
author | ctrlaltca@gmail.com <> | 2012-02-09 16:42:49 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2012-02-09 16:42:49 +0000 |
commit | e963d62c3f65d861db977efc2489ccf4b631beb5 (patch) | |
tree | 3981692ca746e11402146870fe7b6dbebc868ee1 /framework/Web/UI/WebControls | |
parent | 4a8bd53f85b2dc0bcddd415873ce4ab49e1e099c (diff) |
patch for #382
Diffstat (limited to 'framework/Web/UI/WebControls')
-rw-r--r-- | framework/Web/UI/WebControls/TReCaptchaValidator.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/UI/WebControls/TReCaptchaValidator.php b/framework/Web/UI/WebControls/TReCaptchaValidator.php index 2898a913..7199e401 100644 --- a/framework/Web/UI/WebControls/TReCaptchaValidator.php +++ b/framework/Web/UI/WebControls/TReCaptchaValidator.php @@ -100,8 +100,8 @@ class TReCaptchaValidator extends TBaseValidator {
$cs->registerEndScript(
$this->getClientID().'::validate',
- '$(\''.TJavaScript::quoteString($this->getClientID().'_1').'\').value = \''.TJavaScript::quoteString($value).'\';'.
- 'Prado.Validation.validateControl(\''.TJavaScript::quoteString($control->ClientID).'\');'
+ '$('.TJavaScript::quoteString($this->getClientID().'_1').').value = '.TJavaScript::quoteString($value).';'.
+ 'Prado.Validation.validateControl('.TJavaScript::quoteString($control->ClientID).');'
);
if ($control->getVisible(true))
|