diff options
author | ctrlaltca@gmail.com <> | 2012-04-14 15:17:24 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2012-04-14 15:17:24 +0000 |
commit | 6a55e3cea8f0b98dfa1b19ff970ca18cd6730b96 (patch) | |
tree | a524889ba400bdc4999d75d6c39a60179a767e62 /framework/Web/UI/WebControls | |
parent | 53d396c78856bd991245c4c1b0058e7e79a22205 (diff) |
fix #394
Diffstat (limited to 'framework/Web/UI/WebControls')
-rw-r--r-- | framework/Web/UI/WebControls/TBaseValidator.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/Web/UI/WebControls/TBaseValidator.php b/framework/Web/UI/WebControls/TBaseValidator.php index 30320c5f..abf959cd 100644 --- a/framework/Web/UI/WebControls/TBaseValidator.php +++ b/framework/Web/UI/WebControls/TBaseValidator.php @@ -507,7 +507,6 @@ abstract class TBaseValidator extends TLabel implements IValidator */
public function validate()
{
- $this->setIsValid(true);
$this->onValidate();
if($this->getVisible(true) && $this->getEnabled(true))
{
@@ -536,6 +535,8 @@ abstract class TBaseValidator extends TLabel implements IValidator $this->setIsValid(true);
$this->onValidationSuccess();
}
+ } else {
+ $this->setIsValid(true);
}
return $this->getIsValid();
}
|